1.

Define Pointers?

Answer»
  • Pointes are special TYPE of VARIABLES that are used to store the memory address of the other variables.
  • Pointers are declared normallt as other variables WITHE diffrence of * that is present in front of the pointer identifier.
  • There are two operators that are used with the pointers one is '&' and another one is '*'.
  • & is KNOWN as address of operator and * is known as dereferncing operator, both are prefix unary operators.



Discussion

No Comment Found