Question
c++ Dynamic 1-D array Create three dynamically allocated arrays (x, y, and z) of size N, where N is a number entered by the user.
c++
Dynamic 1-D array
Create three dynamically allocated arrays (x, y, and z) of size N, where N is a number entered by the user. Populate x with even numbers and y with odd number. Add the respective element in x to the respective element in y, and store the result in the respective element in z using the following function, void sum_elements(int x[], int y[], int z[], int size).
Static 2-D array
Create a 3 x 3 array, and assign 1s to all columns in the first row, 2s to all columns in the second row, and 3s to all columns in the third row. Sum all the elements in the array, and return the sum as an integer using the following function, int sum_elements(int x[][3]).
please explain each step/ why you wrote the code as such
Step 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