Question: Implement a switch function with the following interface: Question 1 Implement a switch function with the following interface Switch (int x,int y): It should switch
Implement a switch function with the following interface:
Question 1 Implement a switch function with the following interface Switch (int "x,int "y): It should switch the values of x and y at its end Use your main) to test this function as follows int a-5 b-7 Switch(&a, &b) Question 2 In your main( ). dynamically allocate a one dimensional array. int x. 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
