C supports Decision Making and Looping (Interations)
In decision Making,
if, if-else, if- else if – else, switch – case is used.
T S Pradeep Kumar
In decision Making,
if, if-else, if- else if – else, switch – case is used.
if(condition)if – else
{
//These statements are executed only if the condition is true or 1
}
if(condition)if – else if – else
{
//These statements are executed only if the condition is true or 1
}
else
{
//these statement are executed only if the condition is false or 0
}
(in the above example, there is no else part means that for some situation, there may not be a need for else part)
if(condition 1)Switch Case
{
//These statements are executed if the condition 1 is true or 1
}
else if (condition 2)
{
//These statements are executed if the condition 2 is true or 1
}
else
{
//These statements are executed neither condition 1 nor condition 2 are true
// if all the conditions fails, then this statement will execute
}
switch (expression)Looping
{
case 1: statement 1;
break;
case 2: statement 2;
break;
case 3: statement 3;
break;
default: statement d;
break;
}
//Statement n;
The switch case works similar like a multiple if else if statement.
Assume if the expression takes 3 as the value and the statement 3 will be executed and next there is a break statement, so the control comes to statement n and it ill be printed.
so when case 3: is success, then
statement 3;
statement n;
will be printed
- while()
- do .. while();
- for()
while(condition)do while()
{
//statement 1
}
statement 1 will keep on execution till the condition becomes false
so this loop is called as entry controlled loop
dofor loop
{
//Statement 1
}while(condition);
in this, whether the condition is true or false, first time the loop will execute and only then it will check for validity of the condition.
so this loop is called as exit controlled loop
for (initialization: condition; increment/decrement)More details about the looping will be in subsequent posts.
{
//Statement
}
T S Pradeep Kumar
Comments
Post a Comment