what is pointer?
And how using pointers in coding makes program easy?
:- 4 points
________________________
________________________
Answers
Answered by
20
Answer:
A pointer is a variable that stores a memory address. Pointers are used to store the addresses of other variables or memory items. Pointers are very useful for another type of parameter passing, usually referred to as Pass By Address. Pointers are essential for dynamic memory allocation.
Similar questions