Examveda
Examveda

Which operator is used for logical NOT in C?

A. &&

B. !

C. &

D. |

Answer: Option B

Solution(By Examveda Team)

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.

This Question Belongs to C Program >> Operators And Expressions

Join The Discussion

Related Questions on Operators and Expressions