I have been trying to get my program to ask the user if the want to run the program again before exiting. I have been using he following while loop. It isn't working, any suggestions.
char again;
again = 'Y';
while (again == 'Y','y')
{
//
// program
//
cout << "Enter the number 1 if you wish to run the program again!!!";
cin >> again;
}