#include <iomanip>
#include <iostream>
using namespace std;
int main()
{
const int size = 5; // 1
char name[size]; // 2
cout << "Enter your name: ";
cin >> setw(size) >> name; // 3
cout << "Hello, " << name << "! " // 4
"Welcome to C++" << endl; // 5
return 0;
}
Login in to like
Login in to comment