Question: solve it Choose C code segment that prints the following pattern; 11111 2222 333 44 5 Assume variables i and jare already declared. a) for(i=1;i=i
Choose C code segment that prints the following pattern; 11111 2222 333 44 5 Assume variables i and jare already declared. a) for(i=1;i=i ; j--) printf("d", i); printf(" "); } ) c) d) for(i=1;i ; j--) printf("%d", i); printf(" "); } a) correct answer: a b) correct answer: b c) correct answer: d) correct answer: d
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
