标签: c visual-studio-2010 strftime
我想使用strftime()中的函数<ctime>来打印ISO 8601 UTC格式的时间,例如2016-01-12T10:37:20Z。
strftime()
<ctime>
2016-01-12T10:37:20Z
根据标准cplusplus,格式字符串%FT%TZ与"%Y-%m-%dT%H:%M:%SZ"生成相同,但Visual Studio 2010不知道格式说明符%F和%T。这是为什么? They seem to have forgotten them?!
%FT%TZ
"%Y-%m-%dT%H:%M:%SZ"
答案 0 :(得分:5)
这些功能已引入标准C in C99和C++ in C++11。
Visual Studio 2010似乎不支持这些标准。