Topic: pointers, dynamic array and command line arguments Write a function named "getDynamicNumList" that accepts a count (integer) for the total of all the numbers to obtain storage for. The function...


Topic: pointers, dynamic array and command line arguments



Write a function named "getDynamicNumList" that accepts a count (integer) for the total
of all the numbers to obtain storage for.
The function will allocate an array of integer pointers dynamically,
then read in from the user that many numbers.
For each number, it will allocate memory for each integer initialized it with what the user
enters and save its pointer in the new array.
It then returns the pointer of the array of integer pointers to the caller.


The caller should print out this array based on that description.
Here is an example of calling getDynamicNumList with 4.
It will allocate an array of 4 pointers and read in 10, 55, 76 and 1.
Each integer will have its own dynamic memory location.




10<br>55<br>76<br>- 1 -<br>1<br>

Extracted text: 10 55 76 - 1 - 1

Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here