JULIAN.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.    
  11.    if (mktime(&time_fields) == -1)
  12.      printf("Error converting fieldsn");
  13.    else
  14.      printf("Julian date for July 4, 1994 is %dn", 
  15.        time_fields.tm_yday);
  16.  }