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:
- Initialize the variable i to 0 outside the while loop.
- Set the condition of the while loop as i < 6.
- Inside the while loop, print the value of i using printf function.
- 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;
}