C语言练习题-C语言练习题实例91
题目:打印当前本地时间。
程序分析:该程序使用了 C 语言的时间函数来获取当前的本地时间,并使用 asctime()
函数将时间转换为可读的字符串格式进行输出。
实例
#include <stdio.h>
#include <time.h>
int main() {
time_t rawtime;
struct tm* timeinfo;
time(&rawtime);
timeinfo = localtime(&rawtime);
printf("当前本地时间为: %s", asctime(timeinfo));
return 0;
}
以上实例运行输出结果为:
当前本地时间为: Tue Nov 10 16:28:49 2015
在这个程序中,我们使用了 time()
函数来获取当前的系统时间,然后使用 localtime()
函数将其转换为本地时间的结构体表示,存储在 timeinfo
变量中。最后,我们使用 asctime()
函数将时间信息转换为字符串格式,并通过 printf()
函数打印出来。