Vidyalelo
C Programming · Q14

Operators and Expressions

Programming · C Programming · question 14

Q14

Which operator is used for logical NOT in C?

A.
&&
B.
!
Answer
C.
&
D.
|

Answer: Option B

Solution

Answer: Option B
Solution:
In C, the ! operator is used for logical NOT. It negates the value of a Boolean expression, turning true to false and false to true.

Option A (&&) represents the logical AND operator, not logical NOT.
Option C (&) represents the bitwise AND operator, not logical NOT.
Option D (|) represents the bitwise OR operator, not logical NOT.