syntax of while loop?
Answers
Answered by
2
while (condition)
update statement ;
update statement ;
Answered by
4
initialization
while(condition)
{
body of loop
}
updation
while(condition)
{
body of loop
}
updation
Similar questions