What is the output of `int arr[3] = 1, 2; printf('%d', arr[2]);`?
Q1. What is the output of `int arr[3] = 1, 2; printf('%d', arr[2]);`?
Answer: 0
Explanation: Partially initialized arrays have remaining elements initialized to zero. NET computer science MCQs often test this core concept.