1.

What is the output of the program_x000D_ #include_x000D_ int main()_x000D_ {_x000D_ int a[5] = {2, 3};_x000D_ printf("%d, %d, %d\n", a[2], a[3], a[4]);_x000D_ return 0;_x000D_ }

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


Discussion

No Comment Found