|
C Structures and Union - August 06, 2008 at 13:10 PM by Amit Satpute
Explain with an example the self-referential structure.
Answer
A self referential structure is used to create data structures like linked
lists, stacks, etc. Following is an example of this kind of structure:
struct struct_name
{
datatype datatypename;
struct_name * pointer_name;
};
|