Question: c++ Construct a program that declares a size 10 array of doubles and an array of pointers to doubles. In a for loop, using pointer
c++ 
Construct a program that declares a size 10 array of doubles and an array of pointers to doubles. In a for loop, using pointer arithmetic to increment, initialize the integer array from 1 to 10 and in same loop initialize the pointer array to point to the array elements holding the data. Create a print function that accepts the pointer array and its size as an argument. The function should print out the contents of the pointer array and the values each element points to. A possible example of output: Ox001f20 1.0 Ox001f28 2.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
