#include <SPAN style="FONT-FAMILY: Times New Roman"><stdio.h></SPAN> int main(void) { time_t t; t=time(NULL); printf("The number of seconds since January 1, 1970 is %d/n",t); return 0; }
运行的结果与当时的时间有关,我当时运行的结果是: The Calendar Time now is 1266637045 其中1266637045就是我运行程序时的日历时间。即从1970年1月1日0时0分0秒到此时的秒数。 第6行中给time函数的参数设置为NULL,可得到具体的秒数。 可将第6行改写为以下形式: time(&t); 变量t中存放当前的日期和时间(相当于函数返回值);