Question: Which of the following singly linear linked list representation using C language is correct? A. struct node { }; B. struct node { }; C.
Which of the following singly linear linked list representation using C language is correct?

A. struct node { }; B. struct node { }; C. }; int data; struct node *next; struct node { D. int data; struct node **next; }; int data; struct node *next; struct node "prev; struct node { int data; int node *next;
Step by Step Solution
3.42 Rating (158 Votes )
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
