structure

Discussion in 'C' started by g.deepakmca, Oct 14, 2011.

  1. g.deepakmca

    g.deepakmca New Member

    Joined:
    Oct 14, 2011
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    i guess any one plz explain what is self referential structure... i need it urgently...
     
  2. gpk kishore

    gpk kishore New Member

    Joined:
    Jun 30, 2011
    Messages:
    82
    Likes Received:
    0
    Trophy Points:
    0
    Self referential structures are those pointing to same structure type
    in general we use this concept in Data structures
    for example:-
    struct node
    {
    int data;
    struct node *link;
    };
    Above structure is called self-referential structure
    such that link is pointing to same structure type
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice