1.

Which of the following is the correct output for the program given below?
#include
int main()
{
int arr[5] = {12, 23);
printf("%d%d%d n", a[2], a[3], a[4]);
return 0;
}

A. Garbage values
B. 2 3 3
C. 3 2 2
D. 0 0 0
Answer» E.


Discussion

No Comment Found