本文介绍了abt时间功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好!
我想知道如何使用 - system(date)显示没有
的系统时间。
任何人都可以给我这个操作的想法。
By
SSG
Hi All!
I want to know how to display the system time without
using--system("date").
can anyone give me the idea to handle this operation.
By
S.S.G
推荐答案
Robert Gamble
Robert Gamble
请获得一本小学C课本。如果你没有
买不到它,请使用库中的那个。
#include< stdio.h>
#include< time.h>
int main(无效)
{
time_t now = time(0) ;
printf(时间是%s,ctime(& now));
返回0;
}
Please get an elementary C textbook. Use the one in the library if you
can''t afford one.
#include <stdio.h>
#include <time.h>
int main(void)
{
time_t now = time(0);
printf("The time is %s", ctime(&now));
return 0;
}
这篇关于abt时间功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!