Why does the program return with an exit code other than I specified?

后端 未结 1 942
天涯浪人
天涯浪人 2020-12-11 21:03

This is a simple program :

int main() {
    return 0;
}

The exit code is 0.

If I write:

int main() {
          


        
相关标签:
1条回答
  • 2020-12-11 21:45

    While the main function in C returns an int, operating systems don't necessarily use int as the error code.

    700 in binary is 1010111100.
    Truncating this value to eight bits yields 10111100.
    This equals 188 in decimal.

    That means your OS uses eight bits for error codes.1


    1 Or possibly nine bits because the 8th bit (we start counting from 0, mind you) is 0 here. This is highly improbably due to 9 not being a power of 2, though, as is convention for data widths.

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