库函数调用之时间的显示、计算、应用

                                                            时间类型
UTC世界时间
日历时间
从1970年1月1日
#include<stdio.h>
struct tm *gmtime(const time_t*timep)
功能;将日历时间转化格林威志时间;
struct tm{

创新互联建站专注于庆元企业网站建设,成都响应式网站建设,商城建设。庆元网站建设公司,为庆元等地区提供建站服务。全流程按需策划设计,专业设计,全程项目跟踪,创新互联建站专业和态度为您提供的服务

int tm_sec;
int tm_min;
int tm_hour;
int tm_mday;
int tm_mon;
int tm_year; //tm_year +1900=哪一年
int tm_wday;
int tm_yday;
int tm_isdst;

}
#include<time.h>
#include<stdio.h>
int main(void){
struct tm *local;
time_t t;
t=time(NULL);
local=localtime(&t);
printf("local hour time:%d\n",loccal->tm_hour);
local=gmtime(&t);
printf("utc hour is :%d/n",local->tm_hour);return 0;

}

获取时间
int gettimeofday(struct timeval *tv,struct timezone tz*)
功能;获取从今日凌晨到现在的时差

struct timeval{


int tv_sec; //miao
int tv_usec;//wei miao


};

#include<sys/time.h>
#include<stdio.h>
#include<math.h>
#include<stdlib.h>

 

/************时间函数,延迟函数****************/
void function()
{
 unsigned int i,j;
 double y;
 for(i=0;i<1000;i++)
 for(j=0;j<1000;j++)
 j++;

}

/*******此函数可以计算出一个函数运行的时间********/
main()
{
struct timeval tpstart ,tpend;
float timesuel
gettimeofday(&tpstat,NULL);              // time of start
function();
gettimeofday(&tpend,NULL);              //count time end ;
/*count  time*/

timeuse=1000000*(tpend.tv_sec-tpstart.tv_set);
printf("used time ;\n",timeuse);
exit(0);
}


 

网页标题:库函数调用之时间的显示、计算、应用
分享链接:https://www.cdcxhl.com/article14/gppcge.html

成都网站建设公司_创新互联,为您提供网站维护App开发电子商务移动网站建设定制网站软件开发

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

h5响应式网站建设