When does the void pointer can be dereferenced?
2025
When does the void pointer can be dereferenced?
Answer: B. when it cast to another type of object — Answer: b Explanation: By casting the pointer to another data type, it can be dereferenced from the void pointer.
- A.
when it doesn’t point to any value
- B.
when it cast to another type of object
- C.
using delete keyword
- D.
using shift keyword
Attempted by 389 students.
Show answer & explanation
Correct answer: B
Answer: b
Explanation: By casting the pointer to another data type, it can be dereferenced from the void pointer.
Loading lesson…