Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

while Statements...........!

9 like 0 dislike
Hello,

          Any body here who know about while Statements form,if know then share here your idea................
asked 1 year ago by lily (17,510 points)

1 Answer

3 like 0 dislike
 
Best answer
Hello lily,

               A while statement should have the following form:

    while (condition) {
        statements;
    }

An empty while statement should have the following form:

    while (condition);

7.7 do-while Statements

A do-while statement should have the following form:

    do {
        statements;
    } while (condition);
answered 1 year ago by biswaskeran (70,430 points)

Related questions

11 like 0 dislike
1 answer
12 like 0 dislike
1 answer
11 like 0 dislike
1 answer
10 like 0 dislike
1 answer
asked 1 year ago by biswaskeran (70,430 points)
9 like 0 dislike
2 answers
asked 1 year ago by biswaskeran (70,430 points)