Question: (b) Trace the output of the following program. #include int main(void) { int achik = 5, alang = 7; printf(achik = %d, alang =
(b) Trace the output of the following program. #include int main(void) { int achik = 5, alang = 7; printf("achik = %d, alang = %d ", achik, alang); printf("achik = %d ", achik++); printf("achik = %d ", achik); printf("alang = i ", alang += 3); printf("alang = i ", --alang); return 0; Your answer [5 marks]
Step by Step Solution
★★★★★
3.41 Rating (145 Votes )
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Given achik5 alang7 printfachikd alangd achik alang After executing above statement achik5 ... View full answer
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
