参见英文答案 >
How does C Handle Integer Literals with Leading Zeros,and What About atoi?7个
为什么:
为什么:
int test() { return 00101 % 10; }
返回5,而:
int test() { return 101 % 10; }
返回1?我不能想到一个解释.