💾 Archived View for gmi.noulin.net › man › man7 › precedence.7.gmi captured on 2023-09-08 at 17:16:53. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
OPERATOR(7) Linux Programmer's Manual OPERATOR(7) NAME operator - C operator precedence and order of evaluation DESCRIPTION This manual page lists C operators and their precedence in evaluation. Operator Associativity Notes () [] -> . ++ -- left to right [1] ! ~ ++ -- + - (type) * & sizeof right to left [2] * / % left to right + - left to right << >> left to right < <= > >= left to right == != left to right & left to right ^ left to right | left to right && left to right || left to right ?: right to left = += -= *= /= %= <<= >>= &= ^= |= right to left , left to right The following notes provide further information to the above table: [1] The ++ and -- operators at this precedence level are the postfix flavors of the operators. [2] The ++ and -- operators at this precedence level are the prefix flavors of the operators. Linux 2020-08-13 OPERATOR(7)