Which looping process checks the test condition at the end of the loop?
Answers
Answered by
12
hey your answer is
do-while...
do-while...
Answered by
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
Math,
7 months ago
Social Sciences,
7 months ago
Environmental Sciences,
1 year ago
Math,
1 year ago
Math,
1 year ago