What statement should i provide that would tell the user which is the sentinel value in this code?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#include <iostream>
usingnamespace std;
int main(){
char letter = 'a';
while (letter != 'x')
{cout << "Please enter a letter" << endl;
cin >> letter;
cout << "The letter your entered is " << letter << endl;}
return 0;
}