224k views
4 votes
What would the equivalent code, using a while loop, be for the example

for (i = 0; i < 6; i = i + 1)
printf (ⁿi is d∖nⁿ, i)

User NSSec
by
7.5k points

1 Answer

3 votes

Final answer:

To convert the given for loop into an equivalent while loop, initialize i to 0, set the condition as i < 6, print i using printf, and increment i by 1.

Step-by-step explanation:

To convert the given for loop into an equivalent while loop, you need to follow these steps:

  1. Initialize the variable i to 0 outside the while loop.
  2. Set the condition of the while loop as i < 6.
  3. Inside the while loop, print the value of i using printf function.
  4. Increment the value of i by 1 using the expression i = i + 1.

Here is the equivalent code:

i = 0;
while (i < 6) {
printf("%d is\\", i);
i = i + 1;
}

User Jchristof
by
7.6k points