Write a C++ program that declares three arrays of char elements. The first two arrays are
initialized with string literal constants, "Please, enter your first name: " and "Hello, ", while the
third one is left uninitialized for the first name entered.
1
Expert's answer
2021-09-02T04:34:03-0400
#include <iostream>
using namespace std;
int main ()
{
char arr1[] = "Please, enter your first name: ";
char arr2[] = "Hello, ";
char arr3 [80];
cout << arr1;
cin >> arr3;
cout << arr2 << arr3 << "!";
return 0;
}
Comments
Leave a comment