Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

No, a void pointer cannot be converted to a void array directly. Void pointers point to a memory location without any type information, while a void array is a collection of memory locations with a specific data type. To convert a void pointer to a void array, you would need to cast the void pointer to a specific data type first, and then to the void array.