Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 caseStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started