C++ Operators - Programming in C++
Operators are the basic concept of any programming language, used to build a foundation in programming.
1. Arithmetic Operators (+, -, *, /, %)
2. Relational Operators (=, !=, <, >, >=, <=)
3. Logical Operators (&& AND, || OR, ! NOT)
4. Assignment Operators (=, +=, -=, *=, /=, %=)
5. Bitwise Operators (& Bitwise AND, << Left Shift, >> Right Shift, | Bitwise OR )
No comments