Question
#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
Posted under Data Structures and Algorithms
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?
View solution
Q. What is the time complexity of the above recursive implementation used to find the largest and the smallest element in an array?
View solution
Q. What is the time complexity of the above iterative implementation used to find the largest and smallest element in an array?
View solution
Q. Which of the following methods can be used to find the largest and smallest element in an array?
View solution
Q. What is the time complexity of the above recursive implementation used to find the length of the string?
View solution
Q. Which of the following can be the base case for the recursive implementation used to find the length of a string?
View solution
Q. Which of the following can be the base case for the recursive implementation used to find the length of linked list?
View solution
Q. What is the time complexity of the above iterative implementation used to find the length of a linked list?
View solution
Q. What is the space complexity of the recursive implementation used to convert a decimal number to its binary equivalent?
View solution
Q. What is the time complexity of the recursive implementation used to convert a decimal number to its binary equivalent?
View solution
Q. Which of the following is the binary representation of 100?
View solution
Q. What can be the minimum sum of digits for a 4 digit number?
View solution
Q. What can be the maximum sum of digits for a 4 digit number?
View solution
Q. Which of the following methods can be used to find the sum of digits of a number?
View solution
Q. Which of the following methods used to find the sum of first n natural numbers has the least time complexity?
View solution
Q. What is the time complexity of the above recursive implementation used to find the sum of the first n natural numbers?
View solution
Q. What is the time complexity of the above iterative method used to find the sum of the first n natural numbers?
View solution
Q. Which of the following gives the sum of the first n natural numbers?
View solution
Q. Which of the following methods can be used to find the sum of first n natural numbers?
View solution
Q. What is the space complexity of the above recursive implementation to find the nth fibonacci number?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Data Structures and Algorithms? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!