Archives
All Posts Tagged
Tag: ‘operator’

[EXERCISE 0010] All are equal?

Ok, next one. This time we focus on operators. In this case we need a screenshot instead of code only. Help me: what is this code doing?

Read More

[EXERCISE 0009] Compound assignments

The compound assignment operators consist of a binary operator and the simple assignment operator. They perform the operation of the binary operator on both operands and store the result of that operation into the left operand, which must be a modifiable lvalue. So lets go: transform this snippet back to C++ code!

Read More