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