Double Pointer (Pointer to Pointer) in C with Example
This C Tutorial Explains Pointer to Pointer or Double Pointer in C Programming with Examples. What is a Double Pointer in C? Basically, a pointer holds address; address of some variable, pointer variable, function, structure, array etc. When pointer holds address of some other pointer variable it’s called pointer-to-pointer or double pointer. Syntax for a … Read more