描述
C庫函數char *asctime(const struct tm *timeptr)返回一個指向表示結構日期和時間的字符串的指針struct timeptr。
聲明
以下是 asctime() 函數的聲明。
char *asctime(const struct tm *timeptr)
參數
這個timeptr是一個指向 tm 結構的指針,該結構包含一個分解成其組件的日曆時間,如下所示
struct tm {
int tm_sec; /* seconds, range 0 to 59 */
int tm_min; /* minutes, range 0 to 59 */
int tm_hour; /* hours, range 0 to 23 */
int tm_mday; /* day of the month, range 1 to 31 */
int tm_mon; /* month, range 0 to 11 */
int tm_year; /* The number of years since 1900 */
int tm_wday; /* day of the week, range 0 to 6 */
int tm_yday; /* day in the year, range 0 to 365 */
int tm_isdst; /* daylight saving time */
};
返回值
此函數以人類可讀的格式返回一個包含日期和時間信息的 C 字符串Www Mmm dd hh:mm:ss yyyy,其中 Www 是工作日,Mmm 是字母的月份,dd 是月份中的第幾天,hh:mm:ss 是時間,yyyy 是年份。
示例
下麵的例子展示了 asctime() 函數的用法。
#include <stdio.h>
#include <string.h>
#include <time.h>
int main () {
struct tm t;
t.tm_sec = 10;
t.tm_min = 10;
t.tm_hour = 6;
t.tm_mday = 25;
t.tm_mon = 2;
t.tm_year = 89;
t.tm_wday = 6;
puts(asctime(&t));
return(0);
}
讓我們編譯並運行上麵的程序,它會產生以下結果——
Sat Mar 25 06:10:10 1989
相關用法
- C語言 asctime()、asctime_s()用法及代碼示例
- C語言 宏 assert()用法及代碼示例
- C語言 asin()用法及代碼示例
- C語言 assert()用法及代碼示例
- C語言 atan2()用法及代碼示例
- C語言 abs()用法及代碼示例
- C語言 atan()用法及代碼示例
- C語言 abort()用法及代碼示例
- C語言 acos()用法及代碼示例
- C語言 atexit()用法及代碼示例
- C語言 arc()用法及代碼示例
- C語言 atof()用法及代碼示例
- C語言 atol()用法及代碼示例
- C語言 atoi()用法及代碼示例
- C語言 vprintf()用法及代碼示例
- C語言 宏 va_start()用法及代碼示例
- C語言 setlocale()用法及代碼示例
- C語言 fread()用法及代碼示例
- C語言 sinh()用法及代碼示例
- C語言 宏 offsetof()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - asctime()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。