Sunday, 24 September 2017

if else Statement with program | #17


Key Points :

* if else Statement:
                                This is a conditional statement in which the condition is checked & if the given
                                condition is true then true block exicutes & if the condition is false then the False
                                block will be exicuted.

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

                #Note :

                                In this dicision making statement, there is only one condition.

No comments:

Post a Comment

Popular Posts :