Write the logical operators
Answers
Answered by
0
mark my answer BRIANLIEST
Attachments:

Answered by
2
Explanation:
Logical Operators in C
Operator Description Example
&& Called Logical AND operator. If both the operands are non-zero, then the condition becomes true. (A && B) is false.
|| Called Logical OR Operator. If any of the two operands is non-zero, then the condition becomes true. (A || B) is true.
Similar questions