Which of the following is the proper declaration of a pointer?
Options
int x;
int &x;
int *x;
ptr x;


int *x;
