请输入您要查询的百科知识:

 

词条 asctime
释义

§ 函数名

asctime

§ 功能

转换日期和时间为ASCII码

§ 用法

char *asctime(const struct tm *tblock);

§ 程序演示

#include <stdio.h>

#include <string.h>

#include <time.h>

int main(void)

{

struct tm t;

char str【80】;

/* sample loading of tm structure */

t.tm_sec    = 1; /* Seconds */

t.tm_min    = 30; /* Minutes */

t.tm_hour   = 9; /* Hour */

t.tm_mday   = 22; /* Day of the Month */

t.tm_mon    = 11; /* Month */

t.tm_year   = 56; /* Year - does not include century */

t.tm_wday   = 4; /* Day of the week */

t.tm_yday   = 0; /* Does not show in asctime */

t.tm_isdst = 0; /* Is Daylight SavTime; does not show in asctime */

/* converts structure to null terminated

string */

strcpy(str, asctime(&t));

printf("%s\", str);

return 0;

}

随便看

 

百科全书收录594082条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/11 10:49:04