我有以下代码
#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 ++中存在这样的关键字