Search⌘ K

Double Pointers

Explore the concept of double pointers in C programming. Understand their declaration and how they store addresses of pointer variables. This lesson helps you grasp multi-level pointer referencing and apply this knowledge to manage memory effectively in your programs.

What is a double pointer?


A double pointer is a pointer that holds the address of a pointer variable.


Double pointer declaration

The basic syntax for ...