时间和日期函数

clock测定运行时间函数

 
 
  1. #include"stdio.h"
  2. #include"time.h"
  3. #include"dos.h"
  4. #include"Windows.h"
  5. intmain(void)
  6. {
  7. clock_tstart,end;
  8. start=clock();
  9. Sleep(1045);
  10. //delay();
  11. end=clock();
  12. printf("时间是:%-.3f秒\n",(double)(end-start)/CLK_TCK);
  13. return0;
  14. }

difftime计算时间差函数

 
 
  1. #include"time.h"
  2. #include"stdio.h"
  3. #include"dos.h"
  4. #include"conio.h"
  5. #include"Windows.h"
  6. voidmain()
  7. {
  8. time_tfirst,second;
  9. //clrscr();
  10. first=time(NULL);
  11. Sleep(2000);
  12. second=time(NULL);
  13. printf("%f秒\n",difftime(second,first));
  14. }

time获取系统时间函数

 
 
  1. #include"time.h"
  2. #include"stdio.h"
  3. voidmain()
  4. {
  5. time_tt;
  6. t=time(&t);
  7. printf("从1970年1月1日起到现在经过了%ld秒\n",t);
  8. printf("现在日期:%s\n",ctime(&t));
  9. }

时间和日期函数

本文出自 “阿凡达” 博客,请务必保留此出处http://shamrock.blog.51cto.com/2079212/735850

你可能感兴趣的:(日期函数)