strftim.c.texi

来自「一个C源代码分析器」· TEXI 代码 · 共 32 行

TEXI
32
字号
#include <time.h>#include <stdio.h>#define SIZE 256intmain (void)@{  char buffer[SIZE];  time_t curtime;  struct tm *loctime;  /* @r{Get the current time.} */  curtime = time (NULL);  /* @r{Convert it to local time representation.} */  loctime = localtime (&curtime);  /* @r{Print out the date and time in the standard format.} */  fputs (asctime (loctime), stdout);@group  /* @r{Print it out in a nice format.} */  strftime (buffer, SIZE, "Today is %A, %B %d.\n", loctime);  fputs (buffer, stdout);  strftime (buffer, SIZE, "The time is %I:%M %p.\n", loctime);  fputs (buffer, stdout);  return 0;@}@end group

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?