i have a simple program (extremely simple), and it runs (yay
so far i know there's the while loop that can do it, but if i do this:
char c;
while (c == y)
{
blablabla
cout << "Do you want to continue? (Y/N)" << endl;
cin >> c;
}
the program gives me the error of an undeclared y (the one in red).
so obviously this is not the way to do it. any C++ experts out want to lend me a hand?
