Tutorials
C Language
CPP
Data Structure
JAVA
PHP
DBMS
JavaScript
Questions
Python Questions
JavaScript Questions
Java Questions
PHP Questions
SQL Questions
About Us
Contact Us
Login / Sign up
Login
Sign-up
C Language
Home
C Language
Logical Operators
C
Logical Operators
C language supports following 3 logical operators.
Operator
Description
Example
&&
Logical AND
(a && b) is false
||
Logical OR
(a || b) is true
!
Logical NOT
(!a) is false
Prev
Next
Subscribe us on Youtube
Share This Page on
Ask Question
Post Comment
Basic of C Language
Overview of C language
Features of C language
Simple C Program
C Input/Output Function
C Language Syntax Rules
Keywords and Identifier
Data types in C Language
Variables in C Language
Operators and Expression
Operators in C Language
Arithmetic Operators
Relation Operators
Logical Operators
Bitwise Operators
Assignment Operators
Conditional Operator
Special Operator
Priority of Operator
Decision Statement
Decision making in C
If statement
If else statement
Nested if else statement
If else if Ladder statement
Switch Statement
break, continue and goto statements
Loop Control Statement
Loops in C Language
For Loop
Nested For Loops
While Loop
Do While Loop
Jumping Out of Loops
Arrays Operation
Introduction of Array
Array Declaration
Array Initialization
Storing value in an array
1-D Array Operation
Insertion-Array Operation
Searching-Array Operation
Strings and Standard Functions
String and Character array
Functions in C
Storage Classes
Ask Question