Operators in C and C++: Difference between revisions

Content deleted Content added
Bitwise operators: Edit for clarity
Operators: re-word for accuracy
Line 216:
===Assignment operators===
 
All assignment expressions exist in C and C++ have the same assignment operators and all can be overloaded in C++.
 
For the given operators, the semanticsemantics of the built-in combined assignment expression <code>a ⊚= b</code> is equivalent to <code>a = a ⊚ b</code>, except that <code>a</code> is evaluated only once.
 
{| class="wikitable" style="width:100%"
Line 288:
! colspan="2" rowspan="2" | Name
! rowspan="2" | Syntax
! rowspan="2" | Can overload in C++
! rowspan="2" | In C
! colspan="2" | C++ prototype
Line 335:
! colspan="2" rowspan="2" | Name
! rowspan="2" | Syntax
! rowspan="2" | Can overload in C++
! rowspan="2" | In C
! colspan="2" | C++ prototype