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

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <dos.h>
  3. void main (void)
  4.  {
  5.    struct date curr_date;
  6.    struct time curr_time;
  7.    FILE *output;
  8.    getdate(&curr_date);
  9.    gettime(&curr_time);
  10.    if ((output = fopen("DATETIME.OUT", "w")) == NULL)
  11.      fprintf(stderr, "Error opening file DATETIME.OUTn");
  12.    else
  13.      {
  14.        fwrite(&curr_date, sizeof(curr_date), 1, output);
  15.        fwrite(&curr_time, sizeof(curr_time), 1, output);
  16.        fclose(output);
  17.      }
  18.  }