Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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