If you are using C language to implement the heterogeneous linked list, what pointer type will you use?
The heterogeneous linked list having different data types in its nodes and we require a link, pointer to connect them. It is not possible to use ordinary pointers for this. So we go for void pointer.