#include <ctime>在c 中是什么意思
2 回答
料青山看我应如是
TA贡献1772条经验 获得超8个赞
没有 #include <ctime> 的写法,只有 #include <time.h>,time.h 是C语言里时间的库函数。
ctime在C语言里,只是一个把日期和时间转换为字符串的函数。具体函数原型为:
char *ctime( const time_t *timer )
用法实例:
#include <stdio.h>
#include <time.h>
int main( void )
{
time_t ltime;
time( <ime ); //获取当前的系统时间
printf( "The time is %s\n", ctime( <ime ) ); //把当前的系统时间转换成字符串格式输出来
return 0;
}
假如当前的系统时间是2011年1月19日,15时16分20秒,星期三,那么经过这段程序运行后,在显示终端上出现:The time is Wed Jan 19 15:16:20 2011
- 2 回答
- 0 关注
- 1513 浏览
添加回答
举报
0/150
提交
取消