write the syntax of the while loop
Answers
Answered by
5
Answer:
Answer is in attachment hope it helps
Attachments:
Answered by
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