Vidyalelo
C Programming · Q69

C Fundamentals

Programming · C Programming · question 69

Q69

What will be the output of the following C code? #include void main() int a = 5 * 3 % 6 - 8 + 3; printf("%d", a);

A.
10
B.
2
C.
-2
Answer
D.
-3

Answer: Option C

Solution

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