𝐏𝐨𝐢𝐧𝐭𝐞𝐫𝐬 & Tutorial 13
What is Pointer? A pointer is a variable that contains the memory address of another variable, where the real data is stored. Declaring Pointing variable Syntax of declaring pointer variable data_type *pointer_variable_name; int *ptr; There are three position for valid the "*" mark . * As known as Indirection Operator. int *ptr; int * ptr; int* ptr; Initializing Pointers Once a pointer is declared, the programmer must initialize the pointer, that is, make the pointer point to something. A pointer variable can be initialize as follows; ...