Computer Science, asked by sanjeevpawar665, 1 month ago

Clear selection
4. What will be the output of the program
? int main() { int a[3] = {10,12,14};
a[1]=20;
int i=0; while(i<3) { printf("%d", a[i]); i++; }
}​

Answers

Answered by Anonymous
4

Answer:

output:⬇️

10 20 14

Explanation:

a[i] is (i+1) element. So a[1] changes the second element.

Similar questions