Pointers
A variable that stores the memory
address of another variable
Memory
age ptr
, Syntax
int age = 22;
int *ptr = &age;
int _age = *ptr;
Memory
age ptr
A variable that stores the memory
address of another variable
Memory
age ptr
, Syntax
int age = 22;
int *ptr = &age;
int _age = *ptr;
Memory
age ptr