3.What is the output?main() { int x=5; printf(â%d,%d,%dnâ,x,x< <2,x>>2); }
5,1,20
5,10,20
5,20,1
5,15,25