How Many Times Will The Function Recursivegetmin Be Called When #1792

How many times will the function recursive_get_min() be called when the following code is executed?</p> <pre><code class="language-c"> #include<stdio.h> #include<stdlib.h> struct Node { int val; struct Node* next; }*head; int min_of_two(int a, int b) { if(a < b) return a; return b; } int recursive_get_min(struct Node* temp) { if(temp->next == 0) return temp->val; return min_of_two(temp->val,recursive_get_min(temp->next)); } int main() { int n = 5, arr[5] ={1,1,1,1,1},i; struct Node *temp, *newNode; head = (struct Node*)malloc(sizeof(struct Node)); head -> next =0; temp = head; for(i=0;i<n;i++) { newNode =(struct Node*)malloc(sizeof(struct Node)); newNode->next = 0; newNode->val = arr[i]; temp->next =newNode; temp = temp->next; } int min_num = recursive_get_min(head->next); printf("%d",min_num); return 0; }</code></pre>

Online Quiz This multiple choice question (MCQ) is related to the book/course gs gs122 Data Communication and Computer Network. It can also be found in gs gs122 Recursion - Largest and Smallest Number in a Linked List using Recursion - Quiz No.1.


Similar question(s) are as followings:



Online Quizzes of gs122 Data Communication and Computer Network

Choose an organization

Theme Customizer

Gaussian Texture



Gradient Background