I recently encountered a code that read
time_t zombieDate(0x510B56CB);
1) I know that time_t is a arithmetic variable type but what is its limit?
2) zombieDate is the name given to the variable but is the code above equivalent to:
time_t zombieDate = 0x510B56CB
Thanks!