tzset

tzset,是UNIX時間兼容函式,用法為void tzset(void);。

基本介紹

  • 中文名:tzset
  • 功 能:UNIX時間兼容函式
  • 用 法: void tzset(void);
  • 程式例:#include <time.h>
函式名: tzset
功 能: UNIX時間兼容函式
用 法: void tzset(void);
程式例:
#include <stdio.h>
#include <time.h>
int main(void)
{
time_t td;
putenv("TZ=PST8PDT");
tzset();
time(&td);
printf("Current time = %s\n", asctime(localtime(&td)));
return 0;
}
輸出結果Current time = 星期 月 日 具體時間 年

相關詞條

熱門詞條

聯絡我們