Vidyalelo
C Programming · Q68

C Fundamentals

Programming · C Programming · question 68

Q68

What will be the output of the following C code? #include int main() int x = 1, y = 0; x &&= y; printf("%d ", x);

A.
Compile time error
Answer
B.
1
C.
0
D.
Undefined behaviour

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board