1.

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

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


Discussion

No Comment Found