I am posting a program that I came across. Can anyone explain me
- What "0x7FFFFFFF" means?
- How does ctime() function work?
#include<stdio.h>
#include <time.h>
int main()
{
time_t Variable = 0x7FFFFFFF;
printf("Variable value is = %s \n", ctime(&Variable) );
return 0;
}