料青山看我应如是
没有 #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