dtoutf.c

来自「《C/C++程序员实用大全》配套代码,适用初学C++的人员。」· C语言 代码 · 共 23 行

C
23
字号
#include <stdio.h>
#include <dos.h>

void main(void)
 {
   struct date curr_date;
   struct time curr_time;

   FILE *output;

   getdate(&curr_date);
   gettime(&curr_time);

   if ((output = fopen("DATETIME.OUT", "w")) == NULL)
     fprintf(stderr, "Error opening file DATETIME.OUT\n");
   else
     {
       fwrite(&curr_date, sizeof(curr_date), 1, output);
       fwrite(&curr_time, sizeof(curr_time), 1, output);
       fclose(output);
     }
 }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?