getdate()函数的用法实例
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:#include#includeintmain(){/*getdate()函数的用法*/structdated;getda...
复制代码 代码如下:
#include <stdio.h>
#include <dos.h>
int main()
{ /*getdate()函数的用法*/
struct date d;
getdate(&d); //获取DOS日期
printf("the current year is:%dn",d.da_year);//cprintf和printf用法是不同的
printf("the current day is:%dn",d.da_day);
printf("the current month is:%dn",d.da_mon);
getch();
return 0;
}