标签:
time(取得目前的时间) |
|
相关函数
|
ctime,ftime,gettimeofday |
表头文件
|
#include<time.h> |
定义函数
|
time_t time(time_t *t); |
函数说明
|
此函数会返回从公元1970年1月1日的UTC时间从0时0分0秒算起到现在所经过的秒数。如果t 并非空指针的话,此函数也会将返回值存到t指针所指的内存。 |
返回值
|
成功则返回秒数,失败则返回((time_t)-1)值,错误原因存于errno中。 |
范例
|
#include<time.h> mian() { time_t tm_test; int seconds= time((time_t*)NULL); //秒数返回给seconds printf(“%d\n”,seconds); time(&tm_test);//函数中存储给该空间 }
|
标签:
原文地址:http://www.cnblogs.com/cybblog/p/4465403.html