This type of statements insured that the instruction in a program is executed in the same order. In which they appear in the program. An example of sequential Control Statements: Out put of the program …
Read More »Control Statement
Decision control & conditional statements
Decision control statements and Conditional Statements allow the computer to take decision. And force to work under given condition: Decision control statements: It gives the control to the computer for taking the decisions. Two decisions …
Read More »What is Case control statements?
The Case control statements allow the computer to take decision as to be which statements are to be executed next. It is a multi way decision construct facilitate number of alternatives. C has multi way …
Read More »Repitition & loop control statements
Control Structures Repitition & loop control statements This type of statements helps the computer to execute a group of statements repeatedly. This allows a set of instruction to be performed until a certain condition is …
Read More »Some more Control statements
The break Statement We have already met break in the discussion of the switch statement. It is used to exit from a loop or a switch, passing control to the first statement beyond the loop or a switch. With loops, …
Read More »