我有以下代碼代碼來計算在納秒時間
#include <iostream>
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
int main(){
//nanoseconds
int x,y;
x=6700;
y=10000;
int z=0;
clock_t t =clock();
while (y!=0){
z+=x<<2;
x=x>>2;
y>>=2;
}
t=clock()-t;
t=1000*t/CLOCKS_PER_TICK;
printf("%d\n",t);
}
但寫道
1>c:\users\david\documents\visual studio 2010\projects\nano_seconds\nano_seconds.cpp(20): error C2065: 'CLOCKS_PER_TICK' : undeclared identifier
,但我已閱讀,存在於C++這樣的關鍵字