Introduction To C Programming, 2e: Reema Thareja
Introduction To C Programming, 2e: Reema Thareja
Introduction To C Programming, 2e: Reema Thareja
C Programming, 2e
Reema Thareja
If statement
If else statement
If else if statement
Switch statement
if (test expression)
{ TRUE
statement 1;
.............. Statement Block 1
statement n;
}
statement x; Statement x
FALSE
SYNTAX OF IF STATEMENT
Test Expression
if (test expression)
{ TRUE
statement_block 1;
}
else Statement Block 1 Statement Block 2
{
statement_block 2;
}
statement x;
Statement x
#include<stdio.h>
int main()
{
int x=10;
if ( x>0)
x++;
printf("\n x = %d", x);
return 0;
}
#include<stdio.h>
main()
{
int a;
printf("\n Enter the value of a : ");
scanf("%d", &a);
if(a%2==0)
printf("\n %d is even", a);
else
printf("\n %d is odd", a);
return 0;
}
if ( test expression 1)
{
statement block 1;
}
else if ( test expression 2) TRUE FALSE
{
statement block 2; Test Expression
} 1
...........................
else if (test expression N)
{ FALSE
Statement Block 1
statement block N; Test
Expression 2
} TRUE
else
{
Statement Block 2 Statement Block X
Statement Block X;
}
Statement Y;
Statement Y
#include<stdio.h>
int main()
{
int day;
printf(“\n Enter any number from 1 to 7 : “);
scanf(“%d”,&day);
switch(day)
{
case 1: printf(“\n SUNDAY”); break;
case 2 : printf(“\n MONDAY”); break;
case 3 : printf(“\n TUESDAY”); break;
case 4 : printf(“\n WEDNESDAY”); break;
case 5 : printf(“\n THURSDAY”); break;
case 6 : printf(“\n FRIDAY”); break;
case 7 : printf(“\n SATURDAY”); break;
default: printf(“\n Wrong Number”);
}
return 0;
}
WHILE LOOP
• The while loop is used to repeat one or more statements while a particular condition is true.
• In the while loop, the condition is tested before any of the statements in the statement block is
executed.
• If the condition is true, only then the statements will be executed otherwise the control will jump
to the immediate statement outside the while loop block.
• We must constantly update the condition of the while loop. Statement x
while (condition)
{ Update the condition
statement_block; expression
TRUE Condition
}
statement x;
Statement Block FALSE
Statement y
Statement x
Statement x;
do
Statement Block
{
statement_block;
} while (condition);
Update the condition expression
statement y;
TRUE
Condition
FALSE
Statement y
#include<stdio.h>
int main()
{
int i = 0;
while(i<=10)
{
printf(“\n %d”, i);
i = i + 1; // condition updated
}
return 0;
}
#include<stdio.h>
int main()
{
int i = 0;
do
{
printf(“\n %d”, i);
i = i + 1;
} while(i<=10);
return 0;
}
• When a for loop is used, the loop variable is initialized only once.
• With every iteration of the loop, the value of the loop variable is updated and the condition is checked.
If the condition is true, the statement block of the loop is executed else, the statements comprising the
statement block of the for loop are skipped and the control jumps to the immediate statement
following the for loop body.
• Updating the loop variable may include incrementing the loop variable, decrementing the loop variable
or setting it to some other value like, i +=2, where i is the loop variable.
Look at the code given below which print first n numbers using a for loop.
#include<stdio.h>
int main()
{
int i, n;
printf(“\n Enter the value of n :”);
scanf(“%d”, &n);
for(i=0; i<= n; i++)
printf(“\n %d”, i);
return 0;
}
CONTINUE STATEMENT
• The continue statement can only appear in the body of a loop.
• When the compiler encounters a continue statement then the rest of the statements in the loop are skipped
and the control is unconditionally transferred to the loop-continuation portion of the nearest enclosing loop.
Its syntax is quite simple, just type keyword continue followed with a semi-colon.
continue;
• If placed within a for loop, the continue statement causes a branch to the code that updates the loop
variable. For example,
int i;
for(i=0; i<= 10; i++)
{ if (i==5)
continue;
printf(“\t %d”, i);
}
© Oxford University Press 2015. All rights reserved.
GOTO STATEMENT
• The goto statement is used to transfer control to a specified label.
• Here label is an identifier that specifies the place where the branch is to be made. Label can be any valid
variable name that is followed by a colon (:).
• Note that label can be placed anywhere in the program either before or after the goto statement.
Whenever the goto statement is encountered the control is immediately transferred to the statements
following the label.
• Goto statement breaks the normal sequential execution of the program.
• If the label is placed after the goto statement then it is called a forward jump and in case it is located
before the goto statement, it is said to be a backward jump.
• int num, sum=0;
• read: // label for go to statement
• printf("\n Enter the number. Enter 999 to end : ");
• scanf("%d", &num);
• if (num != 999)
• {
• if(num < 0)
• goto read; // jump to label- read
• sum += num;
• goto read; // jump to label- read
• }
• printf("\n Sum of the numbers entered by the user is = %d", sum);