Just like its name a void pointer is a pointer that is not associated with anything or with any data type. Nevertheless, a void pointer can hold the address value of any type and can be converted from one data type to another
BrindhaPrathaban Answered question June 26, 2023
Let’s understand through an example. int a=56;
// initialization of a integer variable ‘a’. float b=4.5;
// initialization of a float variable ‘b’.
Sandhya Answered question June 26, 2023
