Pointer to a pointer (Double Pointer) in C

Pointers are used to store the address of other variables of similar datatype. But if you want to store the address of a pointer variable, then you again need a pointer to store it. Thus, when one pointer variable stores the address of another pointer variable, it is known as Pointer to Pointer variable or Double Pointer. [ Pointer2(address of […]

Pointer to a pointer (Double Pointer) in C Read More »