When I for instance write 7>1 in C (say C99 if this is not an always-been feature), can I expect the result will be exactly 1 or just some non-zero value? Does this hold for all bool operators?
|
|
|||
|
In C99 §6.5.8 Relational Operators, item 6 (
As for equality operators, it's a bit further in §6.5.9 (
The logical AND and logical OR are yet a bit further in §6.5.13 (
... and §6.5.14 (
And the semantics of the unary arithmetic operator
Result type is |
|||||
|
|
C follows Postel's Law for its boolean operators: be conservative in what you do, be liberal in what you accept from others. It will treat any non-zero value as true in boolean expressions, but it will always produce either a 0 or a 1 itself. |
|||
|
|
|
From the ISO C99 standard, section 6.5.8:
From section 6.5.9:
Same thing happens with the logical conjunction ( PS: Incidentally, this is why the bitwise operators ( |
||||
|
|
|
All C operators that yield logically true/false values always yield a result of type That's not the case for all C expressions that yield logically true/false values. For example, the As long as you use the result directly as a condition:
and don't attempt to compare it to something:
this shouldn't cause any problems. (You can safely compare the result to |
|||
|
|
7>1yields a result of typeintwith the value1. – Keith Thompson Feb 4 '12 at 21:39