题目:时间函数举例1
程序分析:无。
程序源代码:
// Created by edu.jb51.net on 15/11/9. // Copyright © 2015年 菜鸟学堂. All rights reserved. // #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
在线实例
字符集 & 工具
最新更新
站点信息
关注我们