I am building a simple console c++ application . When I am running it on one machine which is Windows XP i get output . Which looks fine .
TickTime: 134993550
TickTime: 134993560
When I run same it on another machine which is Windows Server 2008 R2 I get following output and I dont understand how it can be ?
TickTime: 654336178
TickTime: 654336194
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
int i=0;
while(i<100000){
cout << " TickTime :" << GetTickCount();
i++;
}
}
std::chrono::<insert clock here>::now()will give you the time since epoch. – chris Dec 20 '12 at 22:01