Q60
int a[5] = 1,2,3 What is the value of a[4]?
A.
3
B.
1
C.
2
D.
0
AnswerE.
Garbage Value
Answer: Option D
Solution
Answer: Option D
Solution:
In the fourth location of an array it contains 0 since default initialization will take place.