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
4
Answer:
output:⬇️
10 20 14
Explanation:
a[i] is (i+1) element. So a[1] changes the second element.
Similar questions
Math,
1 month ago
Computer Science,
2 months ago
English,
2 months ago
Computer Science,
9 months ago
History,
9 months ago