How can I make my program stay open after using it.

Hello members of the forums. I have been interested in C++ programming for a bit now and am wondering how to get a program to stay open. No I do not mean cin.get(); or system("PAUSE"); but rather, how can I prevent the program from saying "press any key to continue" and then closing after use. Thanks for reading and for the help.
closed account (28poGNh0)
To much simple use an infinit loop


1
2
3
4
5
6
7
int main()
{
      while(true)
      {
            cout << std::"No more : press any key to continue" << std::endl;
      }
}
Topic archived. No new replies allowed.