What is Pointer in C ?

For storing the address of another variable pointers can be used. Variables of type int,char, array, function or any other pointer can be of type pointer. Architecture of a pointer…
View Answer

What is Pointers in C++ ?

Pointers are symbolic representation of addresses and it enables a program to simulate call-by-reference as well as to create and manipulate dynamic data structures. It defines a pointer variable and…
View Answer