Home »
MCQs »
C++ MCQs
A pointer can be initialized with?
137. A pointer can be initialized with?
- Address of variable of the same type
- NULL
- 0
- All the above
Answer: D) All the above
Explanation:
A pointer can be initialized with the address of a variable of the same type, NULL, and zero.