函数名: clock
功 能: 确定处理器时间
用 法: #include <time.h>
clock_t clock(void);
程序例:
#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;
}