© Mikael Olsson 2020
M. OlssonC++20 Quick Syntax Referencehttps://doi.org/10.1007/978-1-4842-5995-5_4

4. Operators

Mikael Olsson1 
(1)
Hammarland, Finland
 

Operators are special symbols used to operate on values. The operators that deal specifically with numbers can be grouped into five types: arithmetic, assignment, comparison, logical, and bitwise operators.

Arithmetic Operators

The arithmetic operators include the four basic arithmetic operations, as well as the modulus operator (%), which is used to obtain the division remainder.
int i = 3 + 2; // 5, addition
    i = 3 - 2; // 1, subtraction
    i = 3 * 2; // 6, multiplication
    i = 3 / 2; // 1, division
    i = 3 % 2; // 1, modulus (division remainder)
Notice that the division operator gives an incorrect ...

Get C++20 Quick Syntax Reference: A Pocket Guide to the Language, APIs, and Library now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.