Question

For homework, I am writing a program that deals with a lot of time_t objects. I thought about checking them for overflow, but then it occurred to me that if they overflowed we would all be in a might bit of trouble.

Is there a plan for this? What will happen when the time since epoch exceeds storage?

Was it helpful?

Solution

LONG_MAX on a 64-bit machine is 2^63 - 1. Try this: go to http://google.com and enter 2^63 seconds in years. Look at the answer and decide whether you really need to worry about it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top