#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
int main(void)
{
time_t t;
struct tm *m;
/* t = 2^31 */
t = pow(2, 31);
m = localtime(&t);
printf("Fin du monde de Unix le %02d/%02d/%04d a %02d:%02d:%02d\n",
m->tm_mday, m->tm_mon + 1, m->tm_year + 1900, m->tm_hour,
m->tm_min, m->tm_sec);
return 0;
}