Sentinel value question

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>

using namespace 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;

}
The sentinel statement is missing, i have to provide it...
that would tell the user

Tell the user by printing info on the screen.
The sentinel is 'x'
ok thanks man
Topic archived. No new replies allowed.