Operators in C and C++: Difference between revisions

Content deleted Content added
Operator precedence: Maybe this section used to be only about precedence, but it clearly contains associativity so the section is about evaluation order; not just precedence.
'just' is confusing here; 'only' is clearer
Line 430:
Notes:
{{reflist |group="lower-alpha"|refs=
<ref name="modulo" group="lower-alpha">The modulus operator worksonly just withsupports integer operands,; for floating point numbers, a library function mustsuch be used instead (likeas [[math.h|{{code|fmod|cpp}}]]) can be used.</ref>
<ref name="bitshift" group="lower-alpha">In the context of [[iostream]]s in C++, writers often will refer to {{cpp|<<}} and {{cpp|>>}} as the "put-to" or "stream insertion" and "get-from" or "stream extraction" operators, respectively.</ref>
<ref name="addressof2" group="lower-alpha">The actual address of an object with an overloaded <code>operator &</code> can be obtained with [https://en.cppreference.com/w/cpp/memory/addressof <code>std::addressof</code>]</ref>