Quiz on Pointers

Here is a quiz to test your understanding of the concepts related to pointers.

We'll cover the following...
Technical Quiz
1.

Which of the following is the correct syntax of pointer declaration?

A.

int * myPointer;

B.

int* myPointer;

C.

int *myPointer;

D.

All of the above


1 / 5