This commit is contained in:
Luca Conte 2023-11-08 15:54:51 +01:00
parent 301d85f1a3
commit bd4cbc530f
1 changed files with 10 additions and 0 deletions

10
a4.8/time.c Normal file
View File

@ -0,0 +1,10 @@
#include <time.h>
#include <stdio.h>
int main(void) {
time_t times[] = {645703200, 49888800};
for (int i = 0; i < 2; i++) {
printf("%s", ctime(times + i));
}
}