Computer Science, asked by advashanvi, 1 month ago

write the syntax of the while loop​

Answers

Answered by advadubey
5

Answer:

Answer is in attachment hope it helps

Attachments:
Answered by Adrienj
3

Answer:

Syntax. The syntax of a while loop in C programming language is − while(condition) { statement(s); } Here, statement(s) may be a single statement or a block of statements. ...

Flow Diagram. Here, the key point to note is that a while loop might not execute at all. ...

Example. Live Demo.

Explanation:

Similar questions