Report Bug
Qus :

What is the output of the following code?

int arr[5] = {1, 2, 3, 4, 5};
printf("%d", arr[3]);

Qus

A. 1
B. 2
C. 3
D. 4


Solution
D. 4






Report Bug