A structure containing a reference to itself as a member is known as Self-Referential Structure.
struct linked_list_node
{
int data;
struct linked_list_node *next; // self reference
};
struct linked_list_node
{
int data;
struct linked_list_node *next; // self reference
};
No comments :
Post a Comment