C语言时间函数

 

  
  
  
  
  1. #include "time.h"  
  2. #include "stdio.h"  
  3. #include "stdlib.h"  
  4. int main()  
  5. {  
  6.     system ("color b2");  
  7.     time_t start,end;  
  8.     start = time(NULL);  
  9.     system("pause");  
  10.     end = time(NULL);  
  11.     printf("The pause used %-.2f seconds.\n",difftime(end,start));//<-  
  12.     system("pause");  
  13.     return 0;  
  14. }  

 

你可能感兴趣的:(职场,时间,C语言,休闲)