Vidyalelo
C Programming · Q238

C Fundamentals

Programming · C Programming · question 238

Q238

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

A.
7, 4
B.
7, 2
C.
5, 2
D.
Syntax error
Answer

Answer: Option D

Solution

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