In C storing values that start with zero get mutated, why?

前端 未结 4 2109
闹比i
闹比i 2020-12-19 15:25

For example:

int main(){

    int x = 01234567;

    printf(\"\\n%d\\n\",x);

    return 0;

}

The following code produces: 342391

相关标签:
4条回答
  • 2020-12-19 15:45

    Because numbers starting with 0 are represented as octal numbers. You cannot really modify this behavior, simply do not include the zero at the beginning.

    0 讨论(0)
  • 2020-12-19 16:01

    Integer constants written with a leading 0 are interpreted as octal (base-8), not decimal (base-10). This is analogous to 0x triggering hexadecimal (base-16) interpretation.

    Basically all you can do here is not put leading 0s on your integer constants.

    0 讨论(0)
  • 2020-12-19 16:04

    Numeric constants beginning with a 0 are interpreted as base 8.

    0 讨论(0)
  • 2020-12-19 16:04

    At compile time a C compiler will identify any integer literals in your code and then interpret these via a set of rules to get their binary value for use by your program:

    • Base-16 (Hexadecimal) - Any integer literals beginning with '0x' will be treated as a hexadecimal value. So int x = 0x22 gives x the decimal value of 2 * 16^1 + 2 * 16^0 = 34.
    • Base-8 (Octal) - Any integer literals beginning with '0' will be treated as an octal value. So int x = 022 gives x the decimal value of 2 * 8^1 + 2 * 8^0 = 18.
    • Base-10 (Decimal) - Any integer literals not matching the other two rules will be treated as a decimal value. So int x = 22 gives x the decimal value of 22.

    It should be noted that GCC supports an extension which provides another rule for specifying integers in binary format. Additionally, these methods of specification are only supported for integer literals at compile time.

    0 讨论(0)
提交回复
热议问题