12345678910



Question 1: What is the output of the program

#include<stdio.h>
int main()
{
int a[5] = {2, 3};
printf("%d, %d, %d ", a[2], a[3], a[4]);
return 0;
}

1. Garbage Values
2. 2, 3, 3
3. 3, 2, 2
4. 0, 0, 0