Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which of the following is an example of a circular self-referential structure?
struct Node { int data; struct Node *next;};int main() { struct Node a, b; a.next = &b; b.next = &a;}
struct Node { int data; struct Node next;};
struct Node { int data;};
struct Node { int data; struct Node *next;};
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!