Pointer in C
  • By Priyanka Mhaske
  • July 24, 2019
  • C and C++ Programing

What is Pointer? Pointers stores the address of variables or a memory location. Syntax: datatype *var_name; e.g. int *ptr; Above example states that: //An example pointer "ptr" that holds //…