c语言ctime
Ⅰ 用c语言如何获取系统当前时间的函数
1、C语言中读取系统时间的函数为time(),其函数原型为:
#include <time.h>
time_t time( time_t * ) ;
time_t就是long,函数返回从1970年1月1日(MFC是1899年12月31日)0时0分0秒,到现在的的秒数。
2、C语言还提供了将秒数转换成相应的时间格式的函数:
char * ctime(const time_t *timer); //将日历时间转换成本地时间,返回转换后的字符串指针 可定义字符串或是字符指针来接收返回值
struct tm * gmtime(const time_t *timer); //将日历时间转化为世界标准时间(即格林尼治时间),返回结构体指针 可定义struct tm *变量来接收结果
struct tm * localtime(const time_t * timer); //将日历时间转化为本地时间,返回结构体指针 可定义struct tm *变量来接收结果
3、例程:
#include <time.h>
void main()
{
time_t t;
struct tm *pt ;
char *pc ;
time(&t);
pc=ctime(&t) ; printf("ctime:%s", pc );
pt=localtime(&t) ; printf("year=%d", pt->tm_year+1900 );
}
时间结构体struct tm 说明:
struct tm {
int tm_sec; /* 秒 – 取值区间为[0,59] */
int tm_min; /* 分 - 取值区间为[0,59] */
int tm_hour; /* 时 - 取值区间为[0,23] */
int tm_mday; /* 一个月中的日期 - 取值区间为[1,31] */
int tm_mon; /* 月份(从一月开始,0代表一月) - 取值区间为[0,11] */
int tm_year; /* 年份,其值等于实际年份减去1900 */
int tm_wday; /* 星期 – 取值区间为[0,6],其中0代表星期天,1代表星期一,以此类推 */
int tm_yday; /* 从每年的1月1日开始的天数 – 取值区间为[0,365],其中0代表1月1日,1代表1月2日,以此类推 */
int tm_isdst; /* 夏令时标识符,实行夏令时的时候,tm_isdst为正。不实行夏令时的进候,tm_isdst为0;不了解情况时,tm_isdst()为负。*/
};
Ⅱ c语言,最后printf语句输出表列为什么是ctime不是time吗time_t类型老师也没教
1、time_t
time_t实际上就是长整型long int,用于存储1970年1月1日0时0分0秒到现在时刻的秒数,且所表示的时间不能晚于2038年1月18日19时14分07秒。
time_t包含在time.h里:
#ifndef__TIME_T
#define__TIME_T
typedeflongtime_t;
/*时间值time_t为长整型longint*/
#endif
2、time函数
函数功能:得到机器的日历时间或者设置日历时间
函数原型:time_t time(time_t *timer);
函数返回:机器日历时间
参数说明: timer=NULL时得到机器日历时间,timer=时间数值时,用于设置日历时间,time_t是一个long类型
所属文件:<time.h>
3、ctime函数
@函数名称: ctime
函数原型:char *ctime(time_t *time);
函数功能:得到日历时间,以字符串形式返回
函数返回:返回字符串格式:星期 月 日 小时:分:秒 年
参数说明:time-该参数应由函数time获得
所属文件:<time.h>
综上,整个程序,定义了time_t类型的变量now,使用time函数获取机器时间并存储在变量now中,使用ctime函数将now转为字符串形式,并通过printf函数输出。
运行结果
Ⅲ 在C语言中,“ctime”是什么意思
没有
#include
的写法,只有
#include
,time.h
是c语言里时间的库函数。
ctime在c语言里,只是一个把日期和时间转换为字符串的函数。具体函数原型为:
char
*ctime(
const
time_t
*timer
)
用法实例:
#include
#include
int
main(
void
)
{
time_t
ltime;
time(
评论
0
0
加载更多
Ⅳ C语言中有没有能显示系统日期和时间的函数
C语言中读取系统时间的函数为time(),其函数原型为:
#include <time.h>
time_t time( time_t * ) ;
time_t就是long,函数返回从1970年1月1日(MFC是1899年12月31日)0时0分0秒,到现在的的秒数。可以调用ctime()函数进行时间转换输出:
char * ctime(const time_t *timer);
将日历时间转换成本地时间,按年月日格式,进行输出,如:
Wed Sep 23 08:43:03 2015
C语言还提供了将秒数转换成相应的时间结构的函数:
struct tm * gmtime(const time_t *timer); //将日历时间转化为世界标准时间(即格林尼治时间)
struct tm * localtime(const time_t * timer); //将日历时间转化为本地时间
将通过time()函数返回的值,转换成时间结构struct tm :
struct tm {
int tm_sec; /* 秒 – 取值区间为[0,59] */
int tm_min; /* 分 - 取值区间为[0,59] */
int tm_hour; /* 时 - 取值区间为[0,23] */
int tm_mday; /* 一个月中的日期 - 取值区间为[1,31] */
int tm_mon; /* 月份(从一月开始,0代表一月) - 取值区间为[0,11] */
int tm_year; /* 年份,其值等于实际年份减去1900 */
int tm_wday; /* 星期 – 取值区间为[0,6],其中0代表星期天,1代表星期一,以此类推 */
int tm_yday; /* 从每年的1月1日开始的天数 – 取值区间为[0,365],其中0代表1月1日,1代表1月2日,以此类推 */
int tm_isdst; /* 夏令时标识符,实行夏令时的时候,tm_isdst为正。不实行夏令时的进候,tm_isdst为0;不了解情况时,tm_isdst()为负。*/
};
编程者可以根据程序功能的情况,灵活的进行日期的读取与输出了。
例如:
#include<time.h>
main()
{
time_t timep;
struct tm *p;
time (&timep);
p=gmtime(&timep);
printf("%d\n",p->tm_sec); /*获取当前秒*/
printf("%d\n",p->tm_min); /*获取当前分*/
printf("%d\n",8+p->tm_hour);/*获取当前时,这里获取西方的时间,刚好相差八个小时*/
printf("%d\n",p->tm_mday);/*获取当前月份日数,范围是1-31*/
printf("%d\n",1+p->tm_mon);/*获取当前月份,范围是0-11,所以要加1*/
printf("%d\n",1900+p->tm_year);/*获取当前年份,从1900开始,所以要加1900*/
printf("%d\n",p->tm_yday); /*从今年1月1日算起至今的天数,范围为0-365*/
}
Ⅳ #include <ctime>在c 中是什么意思
没有 #include <ctime> 的写法,只有 #include <time.h>,time.h 是C语言里时间的库函数。
ctime在C语言里,只是一个把日期和时间转换为字符串的函数。具体函数原型为:
char *ctime( const time_t *timer )
用法实例:
#include <stdio.h>
#include <time.h>
int main( void )
{
time_t ltime;
time( <ime ); //获取当前的系统时间
printf( "The time is %s\n", ctime( <ime ) ); //把当前的系统时间转换成字符串格式输出来
return 0;
}
假如当前的系统时间是2011年1月19日,15时16分20秒,星期三,那么经过这段程序运行后,在显示终端上出现:The time is Wed Jan 19 15:16:20 2011
Ⅵ C语言 ctime()
没有 #include <ctime> 的写法,只有 #include <time.h>,time.h 是C语言里时间的库函数。
ctime在C语言里,只是一个把日期和时间转换为字符串的函数。具体函数原型为:
char *ctime( const time_t *timer )
用法实例:
#include <stdio.h>
#include <time.h>
int main( void )
{
time_t ltime;
time( <ime ); //获取当前的系统时间
printf( "The time is %s\n", ctime( <ime ) ); //把当前的系统时间转换成字符串格式输出来
return 0;
}
假如当前的系统时间是2011年1月19日,15时16分20秒,星期三,那么经过这段程序运行后,在显示终端上出现:The time is Wed Jan 19 15:16:20 2011
Ⅶ C语言。请问一下Ctime(&t)函数(时间显示函数,返回字符串),怎么控制格式输出
#include<stdio.h>
#include<time.h>
intmain()
{
chardate[255];
time_tt=time(0);
strftime(date,255,"%Y%m%d ",localtime(&t));
printf("TheTimeis:%s",date);
}
要格式化输出时间用strftime就行了,格式化参数网络一下就有了
Ⅷ C语言,怎么定义ctime_r
#include<time.h>
Ⅸ C语言的问题:请问ctime()和asctime有什么区别
你好!
asctime是把时间换成ascii码。
ctime是把时间转换成字符串。
仅代表个人观点,不喜勿喷,谢谢。
Ⅹ c语言中时间处理
稳定超频,要看是什么CPU了,主板,电源,散热器,都很重要,因为超频后功耗变高,对主板也是一种考验,看主板CPU供电相数,电源功率,功耗变高,温度也会变高了,好的散热器才能压的住,一般CPU超频都有一个最大电压值,一般来说,电压相对低的,能达到更高的倍频或者外频的CPU体质比较好,再一个是稳定性,超频后要经过各种测试,稳定的同时也要控制温度。一般CPU要注意的就是CPU电压,防掉电自动加压,倍频或者外频数值。