Vidyalelo
C Programming · Q111

C Fundamentals

Programming · C Programming · question 111

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
Answer
D.
Segmentation fault

Answer: Option C

Solution

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