Designing our own vector in c++

Bhaiya wrote the following code for pointing to the current array which is as follows :
int *old_arr= arr;
My question is that why didn’t Bhaiya put double * before old_arr ?
I think it should be **old_arr=arr;
Please explain me if I am wrong.

The first pointer is used to store the address of the variable. And the second pointer is used to store the address of the first pointer.
hume basically sirf address chaiye for allocation

refer to video where he has actually coded the logic

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.