Computer Science, asked by bhageerath9033, 1 year ago

Which looping process checks the test condition at the end of the loop?

Answers

Answered by Anushka0408
12
hey your answer is


do-while...
Answered by abu7878
1

Answer:

The do while loop checks the test condition at the end during the process of execution

Do while loop

Here the set of codes are first processed, the condition given is evaluated.  

If the test condition is false even the do while runs atleast once as in do while loop the condition is checked in the last.

Do while name itself tells us that first do then check

Ex  

#include<stdio.h>

int main()

{

int i=0;

do

{

printf(“execute\n”);

}

While(i==1);

printf(“not executed\n”);

}

Similar questions