I know the Current system time. I know the estimated time of arrival of a place in the form of hours minutes and seconds. I need to find the duration of travel. But the estimated time of arrival is in 12 hour format. I have to write a program to find the time difference between these two ? I thought of using difftime(time1,time2) but this requires the datatype time_t. I know the time in parts. i.e. i know the hours, minutes and seconds separatley. Both current system time and Estimated time of arrival. I need to find the time difference between the two. The ETA can be after 24 hours. then is there any way i can find out the number of days of travel. Because after 12PM time is set back. hence i'm not able to keep track of the days. Any solution ? I work on C++
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
A straight forward way using C/C++. This is not very robust, but should meet your given requirements.
|
|||
|
|