Use of undeclared identifier 'CLK_TCK' on Mac

#include <stdio.h>

#include <time.h>

clock_t start, stop;

int main(){

  start = clock();

  function();

  stop = clock();

  double duration = (stop - start)/CLK_TCK;

  return 0;

}

 

看数据结构算法课程,想在mac上的xcode用CLK_TCK跑跑代码,结果遇到“Use of undeclared identifier ‘CLK_TCK‘”。

解决:使用CLOCKS_PER_SEC而不是 CLK_TCK 。

Use of undeclared identifier 'CLK_TCK' on Mac

上一篇:[mac]macOS Big Sur大苏尔动态壁纸下载


下一篇:Python单元测试框架:pytest