| PREV |
Linked Lists |
NEXT |
| |
(9 / 301) * |
|
|
|
|
If you are using C language to implement the heterogeneous linked list, 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.
Check out the C program to implement a Generic linked list in the same FAQ.
|
| PREV |
COMMENTS INDEX PRINT |
NEXT |
Last updated:
November 3, 2005
www.cracktheinterview.com - Your destination for the most common IT interview questions, answers, frequently asked interview questions (FAQ), C Programs, C Datastructures for technical interviews conducted by the top IT companies around the world!
|
|
|