Q. How to create a dynamic array of pointers (to integers) of size 10 using new in C++? Hint: We can create a non-dynamic array using int *arr[10]
β
Correct Answer: (B)
int **arr = new int *[10];