Login
Remember
Register
Ask a Question
What is the output of the code given below
+1
vote
asked
Jun 13, 2019
in
C Plus Plus
by
Derya
What is the output of the code given below
#include <stdio.h>
int main()
{
int x = 0, y = 2;
if (!x && y)
printf("true\n");
else
printf("false\n");
}
a. undefined behaviour
b. compile time error
c. FALSE
d. TRUE
#c-language
#c-programming
#c-compiler
Please
log in
or
register
to answer this question.
0
Answers
...