0 votes
in C Plus Plus by
What is a pointer in C Language?

1 Answer

0 votes
by

Pointers are variables which stores the address of another variable. That variable may be a

scalar (including another pointer), or an aggregate (array or structure). The pointed-to object may

be part of a larger object, such as a field of a structure or an element in an array.

...