Vidyalelo
Data Structure · Q608

Miscellaneous on Data Structures

Programming · Data Structure · question 608

Q608

What is the output of the following code: #include #include 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 = head->next; return max_num; int main() int n = 9, arr[9] =5,1,3,4,5,2,3,3,1,i; struct Node *temp, *newNode; head = (struct Node*)malloc(sizeof(struct Node)); head -> next =0; temp = head; for(i=0;i next = 0; newNode->val = arr[i]; temp->next =newNode; temp = temp->next; int max_num = get_max(); printf("%d %d",max_num); return 0;

A.
5
B.
1
C.
runtime error
Answer
D.
garbage value

Answer: Option C

Solution

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