Skip to main content

Conditional statement in c language

Conditional statement


This is very simple.you face these problem daily.if you want to go to market and go to park .
But at a time you can go only one place either market or park.
In programming you also face these problems.

These are given below

1.if
2.if-else
3.if-else-if
4.nested if

If statement-

statement is execute when condition is true other wise it will terminated from loop.
#include<stdio.h>
int main( )
{
if(condition)
          {
             statement;
          }
}

FLOW CHART OF IF STATEMENT-

2.if-else statement-

general syntax of if-else statement-

#include<stdio.h>
int main( )
{
if(condition)
{
statement1;
}
else
{
statement 2;
}

EXPLAINATION-
if condition true than  statement 1 execute otherwise it will be terminated.

flow chart of if-else-


3.if-else-if

General  syntax of if else if
#include<stdio.h>
int main( )
{
if(condition1)
{
statement1;
}
else if(condition 2)
{
statement 2;
}
 else
{ statement 3;
}

Explaination

if the condition1 is true than statement1 is execute or condition2 is true than statement2 is execute otherwise statement 3 will be execute.


flow chart-

4.nested-

general syntax of nested-
if (testExpression1) 
{
   statement1;
}
else if(testExpression2) 
{
   statement2;
}
else if (testExpression 3) 
{
    statement3;
}

else 
{
    statement4;
}

thanks.


Comments

Popular posts from this blog

top 10 youtuber of india

        TOP 10 YOUTUBER OF INDIA we are live in that age where everyone is know about youtube.Most of the people open youtube minimum twice in a day. Competition on youtube is so high that people are judge other people by know that which channel he visit. In india jio telecom increase the lavel of youtube. 1.AMIT BHADANA current subscribers-13M TYPE OF CHANNEL-comedy 13 millions is not a just a small number.Amit is very popular everywhere city or village. Amit has a big no of followers. the good things about there videos is that he never use a single words of abuse. we love him. 2.BB KI VINES-BHUVAN BAM current subscribers-12M TYPE OF CANNEL-comedy now come the best youtuber of student specially engineers. in his videos he play many role that is extra ordinary.his comedy is super he has a very good sense of humour.he is very stylish. 3.GOURAV- CHANNEL NAME- TECHNICAL GURUJI               ...

solution of CEQU - Crucial Equation on spoj

solution -CEQU - Crucial Equation  #include<stdio.h> int main() { long long int a,b,x,c,i,t; scanf("%lld",&t); for(i=1;i<=t;i++) { scanf("%lld%lld%lld",&a,&b,&c); while(b!=0) { x=a%b; a=b; b=x; } if(c%a==0) { printf("Case %lld: Yes",i); printf("\n"); } else     {printf("Case %lld: No",i); printf("\n");     } } return  0; }

TOP 10 HIGHEST GROSSING MOVIE OF BOLLYWOOD in 2018

             TOP 10 HIGHEST GROSSING MOVIE OF BOLLYWOOD In INDIA or out side india everyone loves indian cinema.Movie like  bahubali ,dangal proved his capability in across all the world and challenge hollywood. the drama of bollywood movie is super.every year bollywood gives superhit movies to the world. bollywood movies is full of drama ,science,action ,adventure,so that we can say that bollywood movies is superb. bollywood has fan all across the world.in 2018 in bollywood times of biography .that is superb. THESE MOVIES ARE HIT IN 2018 IN EARNING - 1.ROBOT 2.O- It is the best of science fiction movie of india.movie is full of science and graphics. Akhshay and Rajnikanth both are super star of india. And movie gives a beautiful massege to the world .3d version of this movie is excellent. Infact all movie is super hit in India or out side india. 2.SANJU-                 ...