Q27
What is the correct way to declare a pointer to an integer in C++?
A.
ptr int;
B.
pointer int;
C.
int *ptr;
AnswerD.
int ptr;
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board