Multiple choice technology programming languages 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 Reveal answer Fill a bubble to check yourself B Correct answer