Read the given program in C and answer the following question.
main()
{
int x,y;
clrscr();
printf("Read the integer from keyboard(x):")
scanf("%d",&x);
x>>2;
y=x;
printf("OutputA=%d",y);
}
If 'Read the integer from keyboard (x) = 8 then what would be the value of Output A?
1
4
2
0
3
16
4
None of the above
5
Question Not Attempted