#include <stdio.h> #include <time.h> mian() { time_t now; time(&now); printf("%s\n", ctime(&now)); }
#include <stdio.h> #include <time.h> main() { char sz[32]; time_t datum = time(NULL); strftime(sz, sizeof(sz), "%Y", localtime(&datum)); printf("%s\n", sz); }