[求助]一个关于时间函数的问题
源程序如下:
#include <time.h>
#include <stdio.h>
#include <dos.h>
int main(void)
{
clock_t start, end;
start = clock();
delay(2000);
end = clock();
printf("The time was: %f\n", (end - start) / CLK_TCK);
return 0;
}
程序输出2.0才对呀,为什么实际输出结果是0.108890呀?