Question: In your main( ), dynamically allocate a one dimensional array, int *x, the length ofwhich is determined at run time based on users input from
In your main( ), dynamically allocate a one dimensional array, int *x, the length ofwhich is determined at run time based on users input from cin. Then, dynamicallyallocate a two-dimensional array, int **y, the lengths of which are also determined atrun time based on users inputs from cin. Next, use a for loop to assign a value (10) to each array element of both one-dimensional and two-dimensional arrays. Last, de- allocate the two dynamical arrays.

Question 2 In your main( ), dynamically allocate a one dimensional array, intx, the length of which is determined at run time based on user's input from cin. Then, dynamically allocate a two-dimensional array, int "y, the lengths of which are also determined at run time based on user's inputs from cin. Next, use a for loop to assign a value (10) to each array element of both one-dimensional and two-dimensional arrays. Last, de- allocate the two dynamical arrays. Run your program twice with different users' inputs, and create screen shots for each test case
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
