Quiz on Arrays.

Question 1: What is the output?

int a[10];
a[0]=3; a[1]=20; a[2]=14; a[3]=0;
printf("%d %d %d",a[1],a[3],a[0]);