Answers for "4.7.2. Compound Assignment Operators¶"

0

4.7.2. Compound Assignment Operators¶

A = (uint16_t) (A | B); // compliant
A = (uint16_t) ((uint32_t)A << 1u) // compliant
Posted by: Guest on March-23-2022

Browse Popular Code Answers by Language