内容转载自 https://www.douban.com/note/194707333/
VS2013 #include <iostream> #include <time.h> using namespace std; int main(int argc, char *argv[]) { char now[64]; time_t tt; struct tm *ttime; //tt = atol(argv[1]); tt = 1212132599; //time(&tt); ttime = localtime(&tt); strftime(now, 64, "%Y-%m-%d %H:%M:%S", ttime); cout << "the time is " << now << endl; } 阿飞 2021年10月24日
阿飞
2021年10月24日