微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Ubuntu获取系统时间

#include <stdio.h> #include <sys/time.h> #include <time.h> int gettimeofday(struct timeval *tv,struct timezone *tz); int main(int argc,char * argv[]) { struct timeval tv; struct tm *gmt,*area; while(1) { gettimeofday(&tv,0); area = localtime(&(tv.tv_sec));//以本地时区显示时间 printf("Local time is: %s %u:%u",asctime(area),tv.tv_sec,tv.tv_usec); //打印文件名和此段程序行数,并显示系统时间和微秒数; //printf("s: %u:%u\n",tv.tv_usec); //gmt = gmtime(&(tv.tv_sec));//以GMT时区显示时间 //printf("GMT is: %s",asctime(gmt)); //  sleep(2);    } return 0; }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐