Thursday 2 August 2012

to implement the heterogeneous linked list in C language, what pointer type will you use?

The heterogeneous linked list contains different data types in its nodes and we need a link, pointer to connect them. It is not possible to use ordinary pointers for this. So we go for void pointer. Void pointer is capable of storing pointer to any type as it is a generic pointer type.

1 comment:

  1. please post the sample program or pseudo-code for heterogeneous linked list

    ReplyDelete