What will be printed as the result of the operation below: main() { int x=5; printf(“%d,%d,%dn”,x,x< <2,x>>2); }
4,21,1
5,20,0
5,5,5
5,20,1