一个时间编程简单例子

 

#include <time.h>
#include <stdio.h>

int main()
{
 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",local->tm_hour);
 return 0;
 }

 

另外两个有用的函数,asctime();ctime();

你可能感兴趣的:(一个时间编程简单例子)