T
Thomas Baier
Hi there,
I need to know how to get the elapsed time in milliseconds. I tried
time_t start,end;
time(start);
do_something();
time(end);
double dif = difftime(end, start);
but this only returns the elapsed time in seconds.
So how can I get it in milliseconds?
Thanks for hlep
Thomas
I need to know how to get the elapsed time in milliseconds. I tried
time_t start,end;
time(start);
do_something();
time(end);
double dif = difftime(end, start);
but this only returns the elapsed time in seconds.
So how can I get it in milliseconds?
Thanks for hlep
Thomas