文件编程之时间编程
程序员文章站
2024-01-28 19:55:23
...
时间编程
#include <stdio.h>
#include <time.h>
int main(void)
{
struct tm *local;
time_t t;
t=time(NULL);
local = localtime(&t);
printf("Local hour is :%d\n",local->tm_hour);
local = gmtime(&t);
printf("UTC hour is :%d\n",local->tm_hour);
/* timer2 */
struct tm *ptr;
time_t lt;
lt=time(NULL);
ptr = gmtime(<);
printf("asctime:%s",asctime(ptr));
printf("ctime:%s",ctime(<));
return 0;
}
上一篇: chmod chown llinux文件及目录的权限介绍
下一篇: MySQL时间相关操作