Computer Science, asked by Prabudh0071, 1 year ago

syntax of while loop?

Answers

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