main()
{char x=040;
printf ("%d\n",x=x<<1);
}
请问这个程序计算结果为何为64?
我的算法如下,不知错在哪里?
八进制数040=100000然后左移一位不是变成000000了吗?