代码如下:
#include #include #include int main() { // 获取当前时间 tm tm; _getsystime(&tm); // 将当前时间转换成字符串并输出 char str[100]; strftime(str, sizeof(str), "%c", &tm); printf("%s\n", str); system("pause"); return 0;}
运行结果: