Im new at C++ and I wanted to know how to keep the console app up so when you compile and run it, it stays up instead of doing output and exiting. Also I wanted to know how to make a GUI program with C++
I may be wrong, by I assume you are on windows? If so, if you open a command prompt (on winXP goto start>run and type cmd) then you can compile and execute programs with the window staying up.
__________________
PS - this is what part of the alphabet would look like if Q and R were eliminated.
Like redoc said, you can just run the program in a command prompt where the output will stay visible, or at the end of your main function add a line of code that will wait for user input before it closes.
Code:
int main()
{
getchar(); // wait here untill a user presses enter
return 0;
}