#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;
}
我在Xcode中遇到了问题。 CLK_TCK未声明。 如何解决?
答案 0 :(得分:0)
在Mac上使用CLOCKS_PER_SEC
代替CLK_TCK
。