#include <iostream> using namespace std; int main () { char ch; cout<<"PLEASE ENTER A CHAR : "; cin>>ch; cout<<"THE CHAR IS : "<<ch<<endl; return 0; } OUTPUT
No comments