time.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:0k
源码类别:

数学计算

开发平台:

Visual C++

  1. # include <time.h>
  2. # include <stdio.h>
  3. int main()
  4. {
  5. struct tm *local;
  6. time_t tm;
  7. tm = time(NULL);
  8. local = localtime(&tm);
  9. printf("Local time and date: %sn", asctime(local));
  10. local = gmtime(&tm);
  11. printf("UTC time and date: %sn", asctime(local));
  12. return 0;
  13. }