+1 vote
in Class 11 by kratos

Write the syntax of ‘while’ loop.

1 Answer

+2 votes
by kratos
 
Best answer

Syntax of ‘while’ loop:

while(condition)

{

statement(*);

}

...