MCQ
Q.
Consider the following linked list representation. Which of the following statement is used to create a node ?
struct node {
int data;
struct node *next;
}start = NULL;
struct node *new_node;
Correct Answer: D
None.