List with first  node as head?
void funl (struct node*head){
if (head==NULL)
return;
fun1(head->next);
printf {''%d'', head ->data);}
What does following function do for a given Linked ?

A Prints all nodes of linked lists

B Prints all nodes of linked list in reverse order

C Prints alternate nodes of Linked List

D Prints alternate nodes in reverse order

Solution

Correct Answer: Option B

Practice More Questions on Our App!

Download our app for free and access thousands of MCQ questions with detailed solutions