adplus-dvertising
frame-decoration

Question

What is the output of the following code?
#include<stdio.h>
#include<stdlib.h>
struct Node
{
     int val;
     struct Node* next;
}*head;
int get_max()
{
      struct Node* temp = head->next;
	  int max_num = temp->val;
	  while(temp != 0)
	  {
	        if(temp->val > max_num)
		    max_num = temp->val;
		temp = temp->next;
	  }
	  return max_num;
}
int get_min()
{
      struct Node* temp = head->next;
	  int min_num = temp->val;
	  while(temp != 0)
	  {
	        if(temp->val < min_num)
		    min_num = temp->val;
		temp = temp->next;
	  }
	  return min_num;
}
int main()
{
      int i, n = 9, arr[9] ={8,3,3,4,5,2,5,6,7};
      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 max_num = get_max();
      int min_num = get_min();
      printf("%d %d",max_num,min_num);
      return 0;
}

a.

2 2

b.

8 8

c.

2 8

d.

8 2

Answer: (d).8 2

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following code?

Similar Questions

Discover Related MCQs

Q. Which of the following methods can be used to find the largest and smallest number in a linked list?

Q. What is the time complexity of the above recursive implementation used to find the largest and the smallest element in an array?

Q. What is the time complexity of the above iterative implementation used to find the largest and smallest element in an array?

Q. Which of the following methods can be used to find the largest and smallest element in an array?

Q. What is the time complexity of the above recursive implementation used to find the length of the string?

Q. Which of the following can be the base case for the recursive implementation used to find the length of a string?

Q. Which of the following can be the base case for the recursive implementation used to find the length of linked list?

Q. What is the time complexity of the above iterative implementation used to find the length of a linked list?

Q. What is the space complexity of the recursive implementation used to convert a decimal number to its binary equivalent?

Q. What is the time complexity of the recursive implementation used to convert a decimal number to its binary equivalent?

Q. Which of the following is the binary representation of 100?

Q. What can be the minimum sum of digits for a 4 digit number?

Q. What can be the maximum sum of digits for a 4 digit number?

Q. Which of the following methods can be used to find the sum of digits of a number?

Q. Which of the following methods used to find the sum of first n natural numbers has the least time complexity?

Q. What is the time complexity of the above recursive implementation used to find the sum of the first n natural numbers?

Q. What is the time complexity of the above iterative method used to find the sum of the first n natural numbers?

Q. Which of the following gives the sum of the first n natural numbers?

Q. Which of the following methods can be used to find the sum of first n natural numbers?

Q. What is the space complexity of the above recursive implementation to find the nth fibonacci number?