write down the general format of (a)for loop (b)do while (c)
while loop
Answers
Answered by
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 )
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
Similar questions