Make the program return to the last......
cout<< "Username: ";
cin>>user;
cout<<"Okay, you want to add " << "'" << user << "'" << "?" << "(Y or N)" << endl;
cin>>yorn;
if (yorn == "y")
{
cout <<"fasd"<<endl;
system("pause");
return 0;
}
else HOW can I make the program return to
{ to the last question asked after the
cout<<"Return??"<<endl; user responds "n"?
system("pause");
return 0;
}}

