Vidyalelo
C Programming · Q243

C Fundamentals

Programming · C Programming · question 243

Q243

What will be the output of the following C code? #include void main() int x = 1, z = 3; int y = x << 3; printf(" %d ", y);

A.
-2147483648
B.
-1
C.
Run time error
D.
8
Answer

Answer: Option D

Solution

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