I am having a hard time with this:
Which statement is true given the following declaration:
int n=5, *p=&n;
a) p is a pointer initialized to point to n.
b) p is a pointer initialized to the value 5.
c) n and p are both pointer variables.
d) The declaration contains a syntax error.
Which statement is true given the following declaration:
int n=5, *p=&n;
a) p is a pointer initialized to point to n.
b) p is a pointer initialized to the value 5.
c) n and p are both pointer variables.
d) The declaration contains a syntax error.
Comment