📄 time.c
字号:
/* file time.c */ #include <stdio.h> #include <locale.h> #include <time.h> int main(int argc, char *argv[]) { time_t now; struct tm *tm; char buf[100]; //设置 locale setlocale(LC_ALL, ""); now = time(NULL); tm = localtime(&now); strftime(buf, sizeof(buf), "%c", tm); printf("Current Time:%s\n", buf); strftime(buf, sizeof(buf), "%D %T %p", tm); printf("Current Time:%s\n", buf); return 0; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -