写出下面程序的运行结果#includestdio.h voidBin(intx) { if(x/20)Bin(x/2); printf(%d\n,x%2); } intmain() { Bin(12); return0;
A、1100
B、0011
C、6310
D、6311