D'après : Lien
Moi je t'ai fais prendre le temps en seconde.— Data Type: struct timeval
The struct timeval structure represents an elapsed time. It is declared in sys/time.h and has the following members:
long int tv_sec
This represents the number of whole seconds of elapsed time.
long int tv_usec
This is the rest of the elapsed time (a fraction of a second), represented as the number of microseconds. It is always less than one million.
Tu as donc le timestamp UNIX !
Donc la logique sera la même qu'avec ton clock() : tu appelles 1 fois avant, 1 fois après, et tu affiches la différence !
Partager