InterviewSolution
Saved Bookmarks
| 1. |
What explain the logical operator in embedded c language? |
|
Answer» r 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.! Called Logical NOT Operator. It is used to REVERSE the logical state of its operand. If a condition is true, then Logical NOT operator will make it false. !(A && B) is true. |
|