Q3 How can dynamic array of pointers(to integers) of size 100 can be
created using new in C++?
A) int *arr = new int *[100];
B) int **arr = new int *[100];
C) int *arr = new int [100];
D) int arr = new int [100];
sir answer should be A isnt it?? as it will create a array of pointer and return the addess of array so answer should be isnt it?? than why is answer B right answer in solution