/* LOCALTIM.C: This program uses time to get the current time and then uses localtime to convert this time to a structure representing the local time. The program converts the result from a 24-hour clock to a 12-hour clock and determines the proper extension (AM or PM)./...
int main(){ int TimeStart = GetTickCount();Sum();//这个是你要调用的函数 int TimeEnd = GetTickCount();int Time = TimeEnd - TimeStart;//Time的值 就是调用Sum()函数所用的时间 } 简单的写了一下,希望能帮到你
得到当前时间的方法是:首先程序最前面添加头文件#includetime.h,然后通过调用time(NULL)获取当前时间。 C语言程序运行时间测试 C语言获取系统时间的几种方式 C语言中如何获取时间?精度如何? 1 使用time_t time( time_t * timer ) 精确到秒 2 使用clock_t clock() 得到的是CPU时间 精确到1/CLOCKS_PER_SEC秒...