Computer Science, asked by maunisijan, 5 months ago

3. Write the equivalent do while loop for the following for loop.
2)
for(int i=0;i<=10,1++)
If(i==4)
break;​

Answers

Answered by dhruvgupta9371
3

Answer:

int i=0;

do

{

if(i==4)

break;

i++;

}while(i<=10);

Explanation:

updation will be i++ not 1++

Similar questions