mirror of
https://github.com/fincs/FeOS.git
synced 2025-06-23 13:35:31 -04:00
10 lines
116 B
C
10 lines
116 B
C
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
int main()
|
|
{
|
|
time_t t = time(NULL);
|
|
printf("%s\n", ctime(&t));
|
|
return 0;
|
|
}
|