Is there a C++ command that restarts the application. The program I'm making is just a console application that acts like a calculator. But once you enter your number and press enter you have to close the console and re-open it to find another number.
int yes = ;
int no = ;
cout<<"Would you like to reset the program to enter new numbers? (Yes or No)\n";
cin >> yes, no;
what would i have to set the yes and no values to? and is the rest of the code even right?