There's alot of talk about 2012 and the end of the world. This is all clearly false. The end of the world will be on Mon Jan 18, 2038 at 22:14:07. Mark your calendars.
#include <stdio.h>
#include <time.h>
#include <limits.h>
int main(void)
{
time_t end_of_time;
end_of_time = INT_MAX;
printf("End of the world will be: %s\n",
asctime(localtime(&end_of_time)), end_of_time );
return(0);
}
End of the world will be: Mon Jan 18 22:14:07 2038