MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is the correct declaration of linked list? |
| A. | struct node*{int data;node *link;} |
| B. | struct node{int data;struct node *link;} |
| C. | struct node{int data;node link;} |
| D. | struct node*{int data;struct node *link;} |
| Answer» C. struct node{int data;node link;} | |