?? dtoutf.c
字號:
#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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -