如何在C中打印日期?

时间:2014-06-11 11:30:00

标签: c date ctime

我试图从#34; 01/01/01"等字符串中打印日期。并获得类似于" 2001年1月1日的星期一。

我找到了一个与ctime男人有关的东西,但真的不知道如何使用它。

任何帮助?

谢谢,

3 个答案:

答案 0 :(得分:6)

您可以使用strptime将字符串日期转换为struct tm

struct tm tm;
strptime("01/26/12", "%m/%d/%y", &tm);

然后使用struct tm

以适当的日期格式打印strftime
char str_date[256];
strftime(str_date, sizeof(str_date), "%A, %d %B %Y", &tm);
printf("%s\n", str_date);

答案 1 :(得分:4)

strftime()完成这项工作。

char buffer[256] = "";
{
  struct tm t = <intialiser here>;
  strftime(buffer, 256, "%H/%M/%S", &t);
}
printf("%s\n", buffer);

答案 2 :(得分:1)

您可能正在寻找strftime