C - Operators and Expressions
Given the code below, what will be the output?
Choose the correct output considering relational operators combined with logical operators.
int a = 4, b = 4, c = 5;
if (a == b && b < c) {
printf("Yes\n");
} else {
printf("No\n");
}Choose the correct output considering relational operators combined with logical operators.
