Vidyalelo
C Programming · Q48

Operators and Expressions

Programming · C Programming · question 48

Q48

Determine output of the following program code. #include void main() int a, b=7; a = b 4 ? 7>>1 : a; printf("%d %d", a, b);

A.
3 7
B.
7 3
C.
8 3
D.
3 8
Answer
E.
None of these

Answer: Option D

Solution

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