Unary operators are mentioned in C11::6.5.3, and casts are in C11::6.5.4 (they are mentioned in order of precedence). And from note 85 (in section 6.5) in that same C11 standard, major subsections 6.5.X are sorted by precedence. As an example (from Jakub), `sizeof(int)+1` is interpreted as `(sizeof(int))+1`, and not `sizeof((int)+1)`. I used C11 and not C18 (the latest) because at least in the draft copy of C18 that I have, there are a few important typos in that section, while the draft copy of C11 that I have is free of those typos. And C11 and C18 are almost identical, with no major changes to the language. Reported-by: David Sletten <david.paul.sletten@xxxxxxxxx> Cc: Jakub Wilk <jwilk@xxxxxxxxx> Signed-off-by: Alejandro Colomar <alx.manpages@xxxxxxxxx> --- man7/operator.7 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/man7/operator.7 b/man7/operator.7 index b0bac5f4e..22c107c7f 100644 --- a/man7/operator.7 +++ b/man7/operator.7 @@ -48,7 +48,8 @@ lb lb lb l l l. Operator Associativity Notes () [] \-> . ++ \-\- left to right [1] -! \(ti ++ \-\- + \- (type) * & sizeof right to left [2] +! \(ti ++ \-\- + \- * & sizeof right to left [2] +(type) right to left * / % left to right + \- left to right << >> left to right -- 2.33.0