Allocate an array of 100 integer pointers and assign the resulting pointer to the appropriately declared variable, ip_arr. allocate 100 integers and assign the resulting pointers to the elements of ip_arr. initialize each integer value to

Respuesta :

the code is in word file below attached

Ver imagen ashimasood66

Answer:

int **p_arr = new int*[100];

for(int i = 0; i < 100; i++)

{

ip_arr[i] = new int(-1);

}

Step-by-step explanation:

MPL Answer