222) What is the output of the following 'C' program?
main()
{
int a[5]={2,3};
printf("\n%d%d%d",a[2],a[3],a[4]);
}
Answer is:
0 0 0
Related C Programming MCQ with Answers
Answer is:
6
Answer is: