void main()
{ char x=040; printf("%d\n", x=x<<1);
}
上面程序的输出是:
以下程序的输出结果是 void main() { char x=040; printf("%o\n",x<<1); }