MKTIME.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <time.h>
  3. void main(void)
  4.  {
  5.    time_t seconds;
  6.    struct tm time_fields;
  7.    time_fields.tm_mday = 4;
  8.    time_fields.tm_mon = 7;
  9.    time_fields.tm_year = 94;
  10.    time_fields.tm_hour = 0;
  11.    time_fields.tm_min = 0;
  12.    time_fields.tm_sec = 0;
  13.    seconds = mktime(&time_fields);
  14.    printf("The number of seconds between 7-4-94 and 1-1-70 is %ldn",
  15.      seconds);
  16.  }