Pointers in C
C provides operator & to create a pointer to a variable
int & y; The type of y is “int &”, read as
C provides operator a “dereferencing” operator
If p is a pointer to an int variable, then * is the variable.
int * x; The type of x is “int *”, read as