What is a pointer in C?easy
A pointer is a variable that stores the memory address of another value.
Pointers let C programs access and modify memory directly. They are used for dynamic memory, arrays, strings, pass-by-reference style APIs, and low-level system programming.