求解答 Struct time 谢谢
main() {
int x,y;
int gd=VGA,gm=2;
unsigned char h,m,s;
struct time t[1];
initgraph(&gd,&gm,"d:\\tc"); /*初始化图形系统*/
init();
setwritemode(1);
gettime(t); /*读取系统时间*/
h=t[0].ti_hour;
m=t[0].ti_min;
s=t[0].ti_sec;
关于这个 struct time t[1]; 是TC里面自带的函数么?是不是直接引用了
struct time t[1]; 就可以读取系统的时间了啊? 标准的格式是什么啊?