[求助]在屏幕的一角加个秒表……
我想在屏幕的某个角,设一个秒表……在程序的执行过程中,让它一直在那计时……应该怎么实现呢?
参照此例:
struct anly_struct {
char date[23]; /* 保存的日期,时间 */
} test_data;
struct time ttt;
struct date ddd;
getdate(&ddd);
gettime(&ttt);
sprintf(test_data.date,"%4d-%02d-%02d %02d:%02d:%02d",ddd.da_year,ddd.da_mon,ddd.da_day,ttt.ti_hour,ttt.ti_min,ttt.ti_sec);
再显示时间test_data.data就行了