#include <stdio.h>#include <conio.h>#include <dos.h>
int main(void){ struct date sd;
getdate(&sd);
printf("date: %d -% d - %d\n", sd.da_mon, sd.da_day, sd.da_year);
getch(); return 0;}
结构是DOS.H中定义的