if ((a % 5) && (a % 11))
printf("The number %d is divisible by 5 and 11\n", a);
else
printf("%d number is not divisible by 5 and 11\n", a);
How will the logical &&
operator work if I don't add == 0
in the expression, if there is no remainder, will it look for the quotient? and the quotient will always be a non zero term so the programme will always return true.
According to the C Standard (6.5.13 Logical AND operator)
In the expression used in the if statement
if each operand
a % 5
anda % 11
is unequal to 0 then the expression evaluates to logical true. That is whena
is not divisible by5
and is not divisible by11
then the expression evaluates to true and as a result a wrong message is outputted in this statementTo make the output correct you should change the expression in the if statement the following way. Pay attention to that you need also to change the message in the second call of printf.