If Statement in C

Advertisements

Decision Making Statement in C If Else in C


if-then Statement in C

if-then is most basic statement of Decision making statement. It tells to program to execute a certain part of code only if particular condition or test is true.

Syntax

if(condition)
{
..........
..........
}

Example

#include<stdio.h>
#include<conio.h>

void main()
{
int a=10;
if(a<=10)
{
printf("a is less than 10");
}
getch();
}

Output

a is less than 10
if statement in c
  • Constructing the body of "if" statement is always optional, Create the body when we are having multiple statements.
  • For a single statement, it is not required to specify the body.
  • If the body is not specified, then automatically condition part will be terminated with next semicolon ( ; ).

else

It is a keyword, by using this keyword we can create a alternative block for "if" part. Using else is always optional i.e, it is recommended to use when we are having alternate block of condition.

In any program among if and else only one block will be executed. When if condition is false then else part will be executed, if part is executed then automatically else part will be ignored.

Syntax

if(condition)
{
..........
..........
}
else
{
........
........
}

Example

#include<stdio.h>
#include<conio.h>

void main()
{
int age=40;
if(age<18)
{
printf("you are child");
}
else
{
printf("you are young");
}
getch();
}

Output

you are young

Decision Making Statement in C If Else in C

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements