Question: Create a C++ program that concatenates 'n' number of strings input by the user, while adhering to the following specifications. Note that the strcat()
Create a C++ program that concatenates 'n' number of strings input by the user, while adhering to the following specifications. Note that the strcat() function cannot be used. 1. The program asks the user how many strings the user wants to concatenate, and then gets 'n' number of strings from the user as input (one after another). 2. The program must store the given input strings into a two-dimensional array where rows represent 'n' and column has a maximum size of 30. 3. The program then concatenates all these strings into a one-dimensional array (of maximum size as n*30) and displays the string on the screen.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
