1 2 3 4 5 6 7
#include <time.h> #include <stdio.h> int main() { time_t t = time(0); printf("time: %s\n", ctime(&t)); }