Quiz on Pointers
Let's put what you've learned about pointers to test!
We'll cover the following...
1
Which of the following is the correct way to declare a pointer?
A)
int y*;
B)
int &y*;
C)
int *y;
D)
int &y;
Question 1 of 60 attempted