标签:
#include <stdio.h> #include <stdlib.h> #include <time.h> int main( void ) { long i = 10000000L; clock_t start, finish; double duration; printf( "Time to do %ld empty loops is ", i ); start = clock(); while( i-- ) ; finish = clock(); duration = (double)(finish - start) / CLOCKS_PER_SEC; printf( "%f seconds", duration ); system("pause"); }
标签:
原文地址:http://www.cnblogs.com/chensheng-zhou/p/5418032.html