Q132
What will be the output of the following C code? #include int main() int x = 2, y = 2; float f = y + x /= x / y; printf("%d %f ", x, f); return 0;
A.
2 4.000000
B.
Compile time error
AnswerC.
2 3.500000
D.
Undefined behaviour
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board