Computer Science, asked by sunithadevi2368, 19 days ago

explain different iterative statements in c with syntax,flowchart and example each​

Answers

Answered by ashoksha19029512
2

Answer:

Iteration statements create loops in the program. In other words, it repeats the set of statements until the condition for termination is met. Iteration statements in C are for, while and do-while.

Explanation:

Iteration statements create loops in the program.

Answered by kaurbhardwaj07
0

Answer:

execute the body of the loop and then eveluates

the conditional expression. if this expression is true ,the loop will repeat , otherwise the loop terminates . As with all of c's loops , condition must be a Boolean expressions.

Attachments:
Similar questions