What pointer type should be used if creating a heterogeneous linked list in C?
Different data types are present in heterogeneous linked lists, making it impossible to utilize standard pointers.
Voidpointers can store pointers to any type, you must use one of the generic pointer types like voidpointer to accomplish this.