C-05-Q146mediumsingle_mcq
For the code int a, s = 0; for(a = 1; a <= 5; a = a + 1) s = s + a; printf("%d", s); what will be the output?
For the code int a, s = 0; for(a = 1; a <= 5; a = a + 1) s = s + a; printf("%d", s); what will be the output?
- a0
- b1
- c5
- d15