#include <iostream>
using namespace std;
int main()
{
char firstName[30], secondName[30];
//input values
cout<<"What is your first name? ";
cin>>firstName;
cout<<"What is your second name? ";
cin>>secondName;
//printing
cout<<"Hi "<<firstName<<" "<<secondName<<endl;
return 0;
}
Output
What is your first name? Amit
What is your second name? Shukla
Hi Amit Shukla
Program:
Output
need an explanation for this answer? contact us directly to get an explanation for this answer