Computer Science, asked by pratyush15899, 2 months ago

what is pointer?
And how using pointers in coding makes program easy?
:- 4 points

________________________
 \bold \red{...spammers \: go \: ahead...}
________________________

Answers

Answered by podipbachhar
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