What Is The Correct Syntax For Do While Loop #145
What is the correct syntax for do while loop?
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Looping Statements - Do While Loop Statements - Quiz No.1.
What is the correct syntax for do while loop?
do; { statement; }while (condition);
do(condition) { statement; }while;
do { statement; }while (condition)
do { statement; }while (condition);