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,
16 days ago
Physics,
16 days ago
Biology,
16 days ago
Computer Science,
1 month ago
English,
1 month ago
Computer Science,
8 months ago
History,
8 months ago