标题:求各位出手,关于c程序同步电脑时间日期………………………………
取消只看楼主
因为曾今年少
Rank: 2
等 级:论坛游民
帖 子:131
专家分:62
注 册:2011-4-13
结帖率:92.31%
已结贴  问题点数:20 回复次数:0 
求各位出手,关于c程序同步电脑时间日期………………………………
函数名: gettime
功 能: 取得系统时间
用 法: void gettime(struct time *timep);
程序例:   
#include <stdio.h>
#include <dos.h>
int main(void)
{
   struct time t;
   gettime(&t);
   printf("The current time is: %2d:%02d:%02d.%02d\n", t.ti_hour, t.ti_min, t.ti_sec,t.ti_hund);
   return 0;
}
 
从网上找到,但是自己看了半天这个函数库哪里来的都不知道,还请各位给个程序或者给个解答哈,谢谢………………
搜索更多相关主题的帖子: void current include return 
2012-04-23 08:51



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-366363-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.117693 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved