Computer Science, asked by nitishamadeshiya, 1 year ago

write down the general format of (a)for loop (b)do while (c)
while loop

Answers

Answered by Anonymous
11
Syntax of for loop


for ( initialisation expression ;test expression ;update expression (s))
body of the loop;



Syntax of do while loop




initialisation expression
do(curly braces open )



body of the loop including update expression



(curly braces close )
while ( test expression );




Syntax of while loop


initialisation expression
while (test expression )
(curly braces open )
body of the loop including update expression
(curly braces close )

nitishamadeshiya: i can't undetstang ur answer
nitishamadeshiya: d*
Similar questions