vote up 2 vote down star

// Simple program to get the date and time on Windows // It compiles and works fine but displays the wrong hour!

// Using Visual C++ 2008 Express on XP SP2
#include <Windows.h>
#include <iostream>
using namespace std;


void main()
{
     SYSTEMTIME st;
     GetSystemTime(&st);

     cout << "Year : " << st.wYear << "\n";
     cout << "Month : " << st.wMonth << "\n";
     cout << "Day : " << st.wDay << "\n";

     // The following line displays the wrong hour, off by 4 hours. 
         // What gives?
     cout << "Hour : " << st.wHour << "\n";
     cout << "Minute : " << st.wMinute << "\n";
     cout << "Second : " << st.wSecond << "\n";
}

// TIA guys!
// -- Bert
flag

4 Answers

vote up 14 vote down

The time is in UTC according to the docs. Link HERE

For local time you want GetLocalTime()

link|flag
vote up 2 vote down

GetSystemTime() returns the current time in UTC (see the documentation). If you're in EST (which is UTC-4 when DST is in affect), then it would return the current time + 4 hours.

link|flag
vote up 1 vote down

did you check to see if your time you get is in the correct timezone?

Windows has a getlocaltime function as well, that should return the proper time in your timezone.

link|flag
vote up 0 vote down

Thanks much guys, sorry about the formatting.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.