#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
。