龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 软件开发 > C/C++开发 >

getdate()函数的用法实例

时间:2014-05-21 15:27来源:网络整理 作者:网络 点击:
分享到:
getdate()函数的用法实例,需要的朋友可以参考一下

代码如下:

#include <stdio.h>
#include <dos.h>
int main()
{     /*getdate()函数用法*/
    struct date d;
    getdate(&d); //获取DOS日期
    printf("the current year is:%d\n",d.da_year);//cprintf和printf用法是不同的
    printf("the current day is:%d\n",d.da_day);
    printf("the current month is:%d\n",d.da_mon);
    getch();
    return 0;
}

精彩图集

赞助商链接