Programming construct
An iteration or loop in a computer program is a set of statements that is executed repeatedly. C provides three iteration constructs: While Do…while ForSyntax on while statement:- initialization; while(condition) { statement or body of the loop; increment/decrements; } Syntax on do..while statement:- initialization; do { statement or body of the loop; increment/decrements; }while(condition); Syntax …