dev c++能用dos.h吗?
如题,如能用怎么用?
这个程序无法执行啊
#include <stdio.h>
#include<stdlib.h>
#include<dos.h>
void main()
{
struct date d;
struct time t;
getdate(&d);
gettime(&t);
printf("现在的日期是:%d--%d--%d\n", d.da_year, d.da_mon, d.da_day);
printf("现在的时间是:%d:%d:%d\n", t.ti_hour, t.ti_min, t.ti_sec);
system("pause");
}