Hello all,
I am implementing linked list programs in C. And for that i want to know more about Self Referential Structure in C. If anyone knows more detail information about it then please tell me.
I am having one example here which helps you to understand more clearly what i want to mean.
struct list
{
int no;
struct list *next;
};
Please help me on the same.