Can void pointer hold any datatype?
Void pointer is a generic pointer.it has void at its datatype. It is a special type of pointer which can hold any type of data. While dereferencing through void pointer typecasting is must. We have studied that the address assigned to a pointer should be of the same type as specified in the pointer declaration. […]