Signed and unsigned char both are used to store a single character. The characters are stored as per their ASCII values. For example, ‘A’ will be stored as 65 as it has value ‘65’ in the ASCII table. You don’t
Uses of getche() function in C++
Consider the following program : #include<iostream> using namespace std; int main() { char ch; cout<<“Want to continue (Press: (y/n)) : ”; cin>>ch; return 0; } Now as the program runs, to input your choice , first you type the required