STRFTIME.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:1k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <time.h>
  3. void main(void)
  4.  {
  5.    char buffer[128];
  6.    struct tm *datetime;
  7.    time_t current_time;
  8.    tzset();
  9.    time(&current_time);
  10.    datetime = localtime(&current_time);
  11.    strftime(buffer, sizeof(buffer), "%x %X", datetime);
  12.    printf("Using %%x %%X: %sn", buffer);
  13.    
  14.    strftime(buffer, sizeof(buffer), "%A %B %m, %Y", datetime);
  15.    printf("Using %%A %%B %%m %%Y: %sn", buffer);
  16.  
  17.    strftime(buffer, sizeof(buffer), "%I:%M%p", datetime);
  18.    printf("Using %%I:%%M%%p: %sn", buffer);
  19.  }