mirror of
https://github.com/ioacademy-jikim/kernel
synced 2025-06-07 07:56:14 +00:00
10 lines
122 B
C
10 lines
122 B
C
#include <time.h>
|
|
#include <stdio.h>
|
|
int main()
|
|
{
|
|
time_t now;
|
|
now = time(0);
|
|
printf("now = %lu\n", now );
|
|
return 0;
|
|
}
|