Tuesday, 26 September 2017

Nested if else with program | #20



Key Points :

5] Nested if else :-
                                This is a decision making statement in which the multiple if else statements are written
                                between if else statements.

                Syntax :-

                                if(condition)
                                {
                               
                                    if(condition)
                                   {
                                    true block;
                                   }
                                    else
                                   {
                                    false block;
                                   }
                                 
                                }
                                else
                                {
                                false block;
                                }


No comments:

Post a Comment

Popular Posts :