The time function in time.h gives milliseconds since the epoch.
|
|
This is a simple way:
To get approximate milliseconds since midnight, multiply If you need more resolution (consider whether you really do), you will have to use another function such as |
|||
|
|
|
You use gettimeofday(2) which is defined in POSIX.1 and BSD. It returns seconds and microseconds as defined in struct timeval from sys/time.h. |
|||
|
|
|
This is the precise way:
That will store into Although it's usually a bad idea to store time-values in an But I don't know if it's worth all the effort. |
|||
|
|
|
You will find |
|||
|
|
|
Take a look at gmtime() Converts directly to Coordinated Universal Time (UTC)... |
|||
|
|