The choices for the above question are:
A) int ptr = nullptr;
B) *int ptr = nullptr;
C) int ptr* = nullptr;
D) int* ptr = nullptr;
The right answer is D. int* ptr = nullptr; In both cases ptr is a pointer to an integer. I hope this is the answer that you were looking for.