Question: Assume the declaration int *arr; Which declaration dynamically creates an array of 35 integers? arr = new int[35]; *arr = int[35]; arr = new int(35);
Assume the declaration int *arr; Which declaration dynamically creates an array of 35 integers? arr = new int[35]; *arr = int[35]; arr = new int(35); or *arr = new[35] of int;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
