I mean, zero is equivalent to false in C language. So, why use zero as the code for a valid output in a command?
For further actions, you may consider blocking this person and/or reporting abuse
I mean, zero is equivalent to false in C language. So, why use zero as the code for a valid output in a command?
For further actions, you may consider blocking this person and/or reporting abuse
Paul -
花间酒 -
Roseanne -
Mr. Algorithm -
Top comments (2)
Because there's generally only a need for one "OK" code, but lots of "ERROR" codes. So when cast to boolean you've got just OK or ERROR, but if you want more detail about the error, the information's there as an int.
And extrapolating from this, the most logical value for representing that singular success case with an integer is zero, because it doesn't care one bit (no punt intended) about what type of integer it is (zero is zero, regardless of bit width, bit or byte order, or whether it's signed or not).