I was browsing around the internet today when i was thinking about the whole unix time reaching the overflowing integer on 2038 and i have a few questions about that.
So first of all why is the unix time saved as a signed integer? The year will never need to be negative right?
And also it seems that to overflow the 64-bit integer will be LOOONG time (December 292,277,026,596) so the max int is pretty astounding with 64 bit (something i could use in my programming somtimes tbh) - But my machine is windows 7 64 bit yet my MAX_INT seems to cap out at the 32-bit range - thats my biggest question is how do i make use of my 64 bit machines 64 bit int in programming?