Preview
Self Referential Structure
Self referential structure contains a pointer variable of itself . it is mainly used for implementing data structures like stack, queue, linked list, trees and graphs in C.
Example
struct STACK
{
int *top;
struct STACK *Link;
};
Best Sellers