StudyingUnixInterface/6/time/time.c

9 lines
116 B
C
Raw Permalink Normal View History

2020-12-09 10:08:25 +00:00
#include <time.h>
#include <stdio.h>
int main(void) {
time_t t = time(NULL);
printf("%lu\n", t);
return 0;
}