You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
245 B
C++

#include <sys/time.h>
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
int main(void) {
timeval tim;
gettimeofday(&tim, NULL);
printf("%d.%06d\n",
static_cast<int>(tim.tv_sec), static_cast<int>(tim.tv_usec));
return true;
}