Pointer and Array Meaning of Pointer A variable that store the address of another variable Two operators mostly used in pointer : · * ( Content of ) So the (*) symbol in (*ptr) for example is used to point the content in ptr variable · & ( Address of ) The (&) symbol in (ptr = &x) is used to show where the x address is Pointer to Pointer (**) A variable that saves another address of a pointer So when the second pointer get the address of the first pointer using the (&) symbol, it ( the second pointer ) can point the content of that address using the (**) symbol. Meaning of Array A series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier • Syntax: ...