0
615views
What is a Logical Operators ?

Subject : Structured Programming Approach

Title : Fundamental of C Programming

Marks : 2M

1 Answer
0
0views

C has the following three logical operators.

&& (logical AND)

|| (logical OR)

! (logical NOT)

Eg: 1) if(age>55 && sal<1000)

2) if(number<0 || number>100)

Please log in to add an answer.