Q111
What will be the output of the following C code? #include int main() int x = 3, y = 2; int z = x /= y %= 2; printf("%d ", z);
A.
1
B.
Compile time error
C.
Floating point exception
AnswerD.
Segmentation fault
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board