c

来自「C程序设计经典900例.zip」· 代码 · 共 25 行

TXT
25
字号
#include <stdio.h>
#include <dos.h>
#include <io.h>
#include <sys\stat.h>

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

   int handle;

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

   if ((handle = creat("DATETIME.OUT", S_IWRITE)) == -1)
     fprintf(stderr, "Error opening file DATETIME.OUT\n");
   else
     {
       write(handle, &curr_date, sizeof(curr_date));
       write(handle, &curr_time, sizeof(curr_time));
       close(handle);
     }
 }

⌨️ 快捷键说明

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