Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
.exe command problem
In some .exe if there is a cmd popup without input it will just pop up and disappear not displaying anything, but as i leave c++ it became an issue to me making beginner programs. Even with input i will input it and the output will popup and the command prompt will dissapear.
specs- 149gb hdd os- winxp im using dev C++ to compile
if you need anymore specs just say so and i can get em
Try adding the line:
markupsystem("pause");
to the end of your program, right before the return 0; , that will make the program display "Press any key to continue" and will wait for you to press a key before ending.
You could also run the program from the CMD prompt instead of double-clicking the file in explorer.