Vidyalelo
C Programming · Q102

C Fundamentals

Programming · C Programming · question 102

Q102

What will be the output of the following C code? #include main() typedef int a; a b=2, c=8, d; d=(b*2)/2+8; printf("%d",d);

A.
10
Answer
B.
16
C.
8
D.
error

Answer: Option A

Solution

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