Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Follow the given specification and instructions to complete part 1 of this assignment: a. Save the following code file as myDynamicArray.cpp b. Compile and
1. Follow the given specification and instructions to complete part 1 of this assignment: a. Save the following code file as myDynamicArray.cpp b. Compile and run the code to observe how it runs. c. Declare a pointer to a dynamic array. d. Create a dynamic array using the size entered by the user. e. Code a call to the fillup function with the dynamic array you created. f. Code a call to the showArray() function with the dynamic array after the fillup() function. g. Your source code is the solution to this exercise. 9 1 #include 2 using namespace std; 3 4 void fillUp(int data[], int size); 5 void showArray(int values[], int size); 6 int main() { 8 int size = 0; // Declare a pointer to a dynamic array 10 11 cout > size; 13 14 // Create the dynamic array 15 16 // Call fillup() function with the dynamic array 17 18 cout > data[i]; 31 } 32 } 33 34. void showArray(int values[], int size) { 35 - for (int i = 0; i
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