Vidyalelo
C Programming · Q83

C Fundamentals

Programming · C Programming · question 83

Q83

What will be the output of the following C code? #include int main() int a = 2; if (a >> 1) printf("%d ", a);

A.
0
B.
1
C.
2
Answer
D.
No Output

Answer: Option C

Solution

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