getdate()函数的用法实例
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;

}

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新C语言学习
热门C语言学习
编程开发子分类