C - Operators - Discussion

You Are Here :: Home > C > Operators - Discussion

 



Q.

What will be printed as the result of the operation below:

main()
{
int x=5;
printf("%d,%d,%dn",x,x< <2,x>>2);
}

A. 5 20 0 B. 1 5 20
C. 5 20 1 D. error

Answer: Option C
Explaination:

 


No Explanation



Discussion

Your Comments Goes here...
NameDiscussion