post  Timestamp out of range; substituting 1970-01-01 02:00:00 eror

areyoupp (98)   Link to this post
I use dev c++.My IDE isn't compiling anything.i take error
1
2
3
4
5
6
7
8
9
10
11
#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
 
    system("PAUSE");
    return EXIT_SUCCESS;
}

Timestamp out of range; substituting 1970-01-01 02:00:00 what the hell ?
areyoupp (98)   Link to this post
please somebody help me.i must fix it
helios (4790)   Link to this post
Timestamp out of range; substituting 1970-01-01 02:00:00
Just lovely.

Sorry, I don't have any solutions. Why don't you try compiling directly from command line? You'll find g++ in c:\dev-c++\bin (the path may be slightly different).
Disch (1022)   Link to this post
Is your computer's clock all screwed up or something?
areyoupp (98)   Link to this post
thanks for post and advice,but i am not solving this.i removed devc++ on my computer then i installed it.but anything doen't to work.i think my computer has a virus :(
Duoas (2964)   Link to this post
It means something has boogered your system's clock.
It also means that your software (Dev=C++ or the libc it uses) cannot handle the value it is getting back from the clock -- so it is being reset to zero, which is 1970 January 1 00:00:00 Z.

Hmm, as I relook, it is being reset to 2 AM. Hmm...

In any case, I do think a virus scan and malware scan is a good idea.

Good luck!
helios (4790)   Link to this post
Hmm, as I relook, it is being reset to 2 AM. Hmm...
OP probably lives in UTC+2.
areyoupp (98)   Link to this post
aghhh.My stupid brother changed system date and year.he made 2095 0_0. thank you again,i think knock galley-west him:)

This topic is archived - New replies not allowed.