Vidyalelo
Data Structure · Q441

Miscellaneous on Data Structures

Programming · Data Structure · question 441

Q441

Consider the following iterative implementation used to find the length of a linked list: struct Node int val; struct Node *next; *head; int get_len() struct Node *temp = head->next; int len = 0; while(_____) len++; temp = temp->next; return len; Which of the following conditions should be checked to complete the above code?

A.
temp->next != 0
B.
temp == 0
C.
temp != 0
Answer
D.
temp->next == 0

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board