1.

Write the syntax of ‘while’ loop.

Answer»

Syntax of ‘while’ loop:

while(condition)

{

statement(s);

}



Discussion

No Comment Found