1个回答
展开全部
#include <time.h>
#include <stdio.h>
#include <dos.h>
int main()
{
time_t timer;
struct tm *tblock;
int m ,n,l;
timer=time(NULL);
tblock=localtime(&timer);
m = tblock->tm_mon;//月
n = tblock->tm_mday;//日
l = tblock->tm_hour;//时
return 0;
}
#include <stdio.h>
#include <dos.h>
int main()
{
time_t timer;
struct tm *tblock;
int m ,n,l;
timer=time(NULL);
tblock=localtime(&timer);
m = tblock->tm_mon;//月
n = tblock->tm_mday;//日
l = tblock->tm_hour;//时
return 0;
}
参考资料: http://baike.baidu.com/view/1741851.htm
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询