What is a void pointer? Ans. A void pointer is a C convention for "a raw address." The compiler has no idea what type of object a void pointer "really points to." If you write int *ip; ip points to an int. If you write void *p; p doesn't point to a void! In C and C++, any t...
See more
Download the Study24x7 App, so you can connect and collaborate.