Question: Write a function name getInput that will return a float pointer. The function should accept a size variable as input parameter. The function should then
Write a function name "getInput" that will return a float pointer. The function should accept a size variable as input parameter. The function should then dynamically allocate storage for an array of the size (all floats). Fill the array with user input. And return the pointer. You only need to write the function header with function definition here, be sure to free the memory at the end. in C++
// function header and definition goes here
// now suppose you are in main function. Write a call to the function above for size = 10;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
