Login
Remember
Register
Ask a Question
In C, why is the void pointer useful in C Language? When would you use it in C Language?
+1
vote
asked
Mar 12, 2020
in
C Plus Plus
by
rahuljain1
In C, why is the void pointer useful in C Language? When would you use it in C Language?
#c-language-void-pointer
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 15, 2020
by
SakshiSharma
The void pointer is useful because it is a generic pointer that any pointer can be cast into
and back again without loss of information.
...