📄 time_studies.c
字号:
// file time_studies.c
//
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <sys/timeb.h>
//------------------------------------------------------------------------------------
int main(void) {
struct timeb timebuffer;
struct tm *newtime;
time_t now;
now = time(NULL);
newtime = localtime(&now);
printf("%d ", newtime->tm_year);
printf("%d ", newtime->tm_mon);
printf("%d ", newtime->tm_mday);
printf("%d ", newtime->tm_hour);
printf("%d ", newtime->tm_min);
printf("%d\n", newtime->tm_sec);
}
//------------------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -