• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

C++ Compiling?

TopGun

Gawd
Joined
Jan 22, 2005
Messages
766
Ive got a problem / question , Im getting into c++ and decided to read some tutorials
and the one that i was trying used this source code:

// my second program in C++

#include <iostream>

using namespace std;

int main ()
{
cout << "Hello World! ";
cout << "I'm a C++ program";
return 0;
}

but when i try to run the exe it compiled it popups and quikcly dissapears
so whats the prob?
 
You could also use cin for a prompt to press any key to quit and it'll stay on the screen untill any key is pressed or closed.
 
Back
Top