What is the output of `int arr[5] = 1, 2; printf('%d', arr[4]);`?
Q1. What is the output of `int arr[5] = 1, 2; printf('%d', arr[4]);`?
Answer: Garbage value
Explanation: Uninitialized elements in an array contain garbage values. NET computer science MCQs often test this core concept.