求c语言大神指点 gettime函数的使用 ,用来编辑个时钟

在网上找到这个答案#include<stdio.h>#include<dos.h>intmain(void){structtimet;gettime(&t);printf... 在网上找到这个答案
#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;
}
可我复制进去怎么出现这种错误 error: aggregate `time t' has incomplete type and cannot be defined还有 error: `gettime' was not declared in this scope
展开
 我来答
White_MouseYBZ
推荐于2016-11-15 · TA获得超过4万个赞
知道大有可为答主
回答量:2.1万
采纳率:82%
帮助的人:6719万
展开全部
你的代码没有错,在DOS的C下没有问题。但DOS的有些时间函数在C++编译器下已经无效了。可尝试用下面的——
#include "stdio.h"
#include "time.h"
#include <DOS.H>
void main(void){
struct tm *pt;
time_t t;
t=time(NULL);
pt=localtime(&t);
printf("The current time is: %2d:%02d:%02d\n",
pt->tm_hour, pt->tm_min, pt->tm_sec);
}
但tm结构没有ms级变量。
追问
怎么不断刷新时间
追答
把这段代码写在一个程序的大循环里才行。
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
bhtzu
2014-11-03 · TA获得超过1.1万个赞
知道大有可为答主
回答量:8088
采纳率:85%
帮助的人:4272万
展开全部
#include<stdio.h> 
#include<time.h>

int main(void) 

   tm t; 

   _getsystime(&t); 
   printf("The current time is: %2d:%02d:%02d\n", t.tm_hour, t.tm_min, t.tm_sec); 
   return 0; 
}
追问
tm是时间类型么
追答

这是一个系统定义好的结构体,专门用来保存时间的,在time.h中声明,直接使用即可。

struct tm {
        int tm_sec;     /* seconds after the minute - [0,59] */
        int tm_min;     /* minutes after the hour - [0,59] */
        int tm_hour;    /* hours since midnight - [0,23] */
        int tm_mday;    /* day of the month - [1,31] */
        int tm_mon;     /* months since January - [0,11] */
        int tm_year;    /* years since 1900 */
        int tm_wday;    /* days since Sunday - [0,6] */
        int tm_yday;    /* days since January 1 - [0,365] */
        int tm_isdst;   /* daylight savings time flag */
        };
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
我透明_的
2014-11-03 · TA获得超过190个赞
知道小有建树答主
回答量:214
采纳率:0%
帮助的人:166万
展开全部
gettime C语言里没有这函数!
更多追问追答
追问
好的我试试
追答
别试了 C语言里没这函数  要用就用gettimeofday或time函数
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式