Question: C++ question 1-1 In your main function in main-1-1.cpp, define and initialize a two-dimensional string array of size 3 by 2. Define (but do not

C++ question
1-1 In your main function in main-1-1.cpp, define and initialize a two-dimensional string array of size 3 by 2. Define (but do not initialize) another two-dimensional array of strings of the same size as the first one. Write a function that copies the values of the first array into the second, without using pointers. The function must take a third parameter that gives the size of the first dimension which in this case is 3 Signature: void copy_2d_strings(string first 02], string second 3C2], int rows) Note: you must access the arrays using [l] notation
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
