Contact Us || Privacy Policy || About Us |
|
Decision Making Statement in C | Control StatementAll statement written in a program are executed from top to bottom one by one. control statement are used to execute /transfer the control from one part of the program to another depending on a condition.These statements are also called as conditional statements. Types of Control StatementThere are four types of control statements in C.
1) Decision making statementsC language provides the following types of decision making statements.
2) Selection statementsThe switch-case Statement is called Selection statements. 4) Iteration statementsfro Loop stamement is used Iteration statements. 4) Jump statementsgo to statement is used Jump statements.
Next TopicIf Statement in C
|