Home » , , » Decision Control Statement In C Programming - " If "

Decision Control Statement In C Programming - " If "

Written By Unknown on Tuesday, October 8, 2013 | 10:02 AM

If Statement :
If is very important decision control statement in C - Programming.Usual way to write if statement is :

                              If ( expression )
                              statement;

OR :

                              If ( expression )
                              {
                               statement1;
                               statement2;
                               }

First of all "if" evaluate the value of expression.If the value of expression become true than computer will work as the statement says.

If the value of expression become false than statement will not be executed.Usually if - expression works with relational operator ( > , < , >= , <= , == )

Ex :                                           if(p>q)
                                                  printf("p is greater than q");

Watch the program Carefully :
                                                            #include<stdio.h>
                                                            #include<conio.h>
                                                            main()
                                                            {
                                                             int number;
                                                             printf("Enter Your Number :");
                                                             scanf("%d",&number);
                                                             if(number>=33)
                                                             printf("\nYou Pass In The Exam");
                                                             getch();
                                                             }

Program Analysis :
Here if will analyze the value of expression is true or false.If the value of inputted number is greater than or equal 33,the expression will be true and program will run otherwise program will be terminated.

We can use logical operator too with "if" expression.Like:
                                     

                                        #include<stdio.h>
                                        #include<conio.h>
                                        main()
                                        {
                                        int numb;
                                        printf("Enter Your Number :");
                                        scanf("%d",&numb);
                                         if(numb>=61&&numb<=80)
                                        printf("You Got First Division");
                                        if(numb>=45&&numb<=60)
                                         printf("You Got Second Division");
                                         if(numb>=33&&numb<=44)
                                         printf("You Got Third Division");
                                        if(numb>=81&&numb<=100)
                                        printf("You Got Letter Marks");
                                        getch();
                                        }

Share this article :

Post a Comment

 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. Learn Programming - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger| Distributed by Rocking Templates