Question: Q3)State which values of the control variable x are printed by each of the following for statements: a) for (x = 20; x >= 3;
Q3)State which values of the control variable x are printed by each of the following for statements: a) for (x = 20; x >= 3; x = 3) { printf("%d ", x); } b) for (x = 7; x <= 27; x += 5) { printf("%d", x); } Output: Output:
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
