chartype.cpp 337 B

123456789101112131415
  1. // chartype.cpp -- the char type
  2. #include <iostream>
  3. int main( )
  4. {
  5. using namespace std;
  6. char ch; // declare a char variable
  7. cout << "Enter a character: " << endl;
  8. cin >> ch;
  9. cout << "Hola! ";
  10. cout << "Thank you for the " << ch << " character." << endl;
  11. // cin.get();
  12. // cin.get();
  13. return 0;
  14. }