#include <iostream.h> void main () { char ch[20]; cout << "What is your name?"; cin >> ch; cout << "Hello " << ch; }