MCQ
Q.
Consider the below representation and predict what will be printed on the screen by following statement ?start->next->data
struct node {
int data;
struct node *next;
}*start = NULL;
Correct Answer: C
None.