List of the logical operators available in C Explain with suitable example
Answers
Answered by
0
Logical AND operator: The '&&' operator returns true when both the conditions under consideration are satisfied. Otherwise it returns false. For example, a && b returns true when both a and b are true (i.e. non-zero). Logical NOT operator: The '!
Similar questions