Question: Study the following example, and answer: a. What is a static array and what is a dynamic array? b. What is the advantage of using

Study the following example, and answer:

a. What is a static array and what is a dynamic array?

b. What is the advantage of using a dynamic array? And what could be the disadvantage?

Static Array:

int arr[10];

const int ARR_SIZE = 10;

int arr[ARR_SIZE];

Dynamic Array:

int *arr;

int arrSize = 0;

arr = new int[arrSize];

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!