Skip to main content
To Get All Information of Sarkari Jobs | Results | Admit Card | And courses ,Internships then CLICK HERE

Logical Operator-:


 Logical Operator are those operator which are used to combine two or more than two condition to form a single larger compound condition,possible logical operator are-:
Logical AND- &&
Logical OR-  | |
Logical NOT- !
  
The precedence of logical operator are as follow-:
                [ ! ]- I
                [ && ]- II
                [  | | ]- III

Truth Table-:

                         
Logical AND and Logical OR are also known as Short ciruit operator.
Example-:        
[(a>b)&&(a<c)] 
The above expression has two condition join by using Logical AND. So,if the first condition is TRUE[1], then also compiler will check the second condition but if the first condition is FALSE[0],then compiler will not check the second condition.
[(a<b)| |(a>b)]
The above expression has two condition join by using Logical OR. So,if the first condition is TRUE[1], then also compiler will not check the second condition but if the first condition is FALSE[0],then compiler will check the second condition.
The above operational behaviour shows the concept of short-circuiting.
Logical AND and Logical OR are binary in nature while Logical NOT is an Unary operator.
Watch The Video Below
ads





Comments

Post a Comment

Please do not enter any spam link in the comment box.


Download The Book "Let Us C" By Yashavant P.Kanetkar,Click The Below Button

-->Email Subscription

Enter Your Email Address:-

Delivered by FeedBurner

Copyright © 2020 TechProgramiz|All Right Reserved|Made By-: Sudarshan Pandey