How to use struct timeval and gettimeofday in C

1 Answer

0 votes
#include <stdio.h>
#include <sys/time.h>

/*
  struct timeval {
     long tv_sec;    // seconds
     long tv_usec;   // microseconds
};
*/


int main(void) {
    struct timeval tv;

    gettimeofday(&tv, NULL);

    printf("%ld %ld", tv.tv_sec, tv.tv_usec);

 }




/*
run:

1646826152 811797

*/

 



answered Mar 9, 2022 by avibootz
edited Mar 11, 2022 by avibootz

Related questions

1 answer 104 views
2 answers 145 views
1 answer 152 views
1 answer 166 views
1 answer 205 views
...