self-referential structure

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • anarghya
    New Member
    • Oct 2006
    • 18

    self-referential structure

    please tell me the definition of self referential structure?
  • Jai Vrat Singh
    New Member
    • Oct 2006
    • 18

    #2
    struct Point {
    float x;
    float y;
    struct Point* next;
    };


    Generally nodes of linked lists are examples of self referential structures - which refer to memory location of same type by storing a self type poiter as a member.

    Comment

    Working...