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