呵呵。。只是它不常用罷了。
下面就是一個例子。你看一下吧!
#include <stdio.h>
#include <dos.h>
int main(void)
{
struct time t;
gettime(&t);
printf("The current time is: %2d:%02d:%02d.%02d
",t.ti_hour, t.ti_min, t.ti_sec, t.ti_hund);
return 0;
}
#include <stdio.h>
#include <dos.h>
int main()
{
union REGS regs;
regs.h.ah=0x2a;
int86(0x21, ®s, ®s);
printf("%d年 %d月 %d日 星期 %d",regs.x.cx,regs.h.dh,regs.h.dl,regs.h.al);
}
===================
我用不了 我家的都是VC++6.0
问下 VC6.0中
用C语言取系统时间的方法 我知道 system("data \t"); 显示时间 但我取不了
我取系统时间写的文本了 要能在VC++6.0能用 谢谢 写具体的 我是新手