#include <sys/time.h> #include <stdio.h> int main(void) { struct timeval tv; gettimeofday(&tv, NULL); printf("%ld: %ld\n", tv.tv_sec, tv.tv_usec); }