FUN WITH POINTERS
Pointers!A confusing yet curious topic. What is a POINTER?Well, itβs a variable that stores the address of another variable. We often get confused by the dual operation performed by the pointer.‘&‘ Operator is an address operator that gives the address of a particular variable.‘*‘ Operator is an indirection operator, that refers to the value pointed […]
Read More FUN WITH POINTERS