Page 48 - 6437
P. 48

             Once an else if succeeds, none of the remaining else if's or else's will be
                   tested.

                          Syntax
                          The syntax of an if...else if...else statement in C programming language is:

                 if(boolean_expression 1)

                 {
                    /* Executes when the boolean expression 1 is true */

                 }
                 else if( boolean_expression 2)

                 {
                    /* Executes when the boolean expression 2 is true */

                 }
                 else if( boolean_expression 3)

                 {
                    /* Executes when the boolean expression 3 is true */

                 }
                 else

                 {
                    /* executes when the none of the above condition is true */

                 }


                          Example


                 #include <stdio.h>


                 int main ()
                 {

                    /* local variable definition */
                    int a = 100;


                    /* check the boolean condition */

                    if( a == 10 )
                    {
                         /* if condition is true then print the following */




                                                                                                      50
   43   44   45   46   47   48   49   50   51   52   53