Question: 3. Convert the following for loop into a while loop. 1 for (a = 100; a > 50; a-- ) 2 { 3 if
3. Convert the following for loop into a while loop. 1 for (a = 100; a > 50; a-- ) 2 { 3 if (a % 8 != 0 ) 4 b array[a]; 5 printf("%d ", b); 6}
Step by Step Solution
There are 3 Steps involved in it
Heres the provided for loop converted into a while loop ... View full answer
Get step-by-step solutions from verified subject matter experts
