Computer Science, asked by mohitsingh829411, 5 months ago

briefly describe the different loop control structures in c with syntax,example and explanation​

Answers

Answered by abhilashakumarijha18
1

Explanation:

There are 3 types of loop control statements in C language. They are, for.

...

Types of loop control statements in C:

Loop Name Syntax

while while (condition) { statements; }where, condition might be a>5, i<10

do while do { statements; } while (condition);where, condition might be a>5, i<10

Similar questions
Math, 5 months ago