Operators

 Operators

Operators are symbols that are used to perform operations on data. C++ has a wide variety of operators, including:

  • Arithmetic operators: +, -, *, /, %
  • Relational operators: <, >, <=, >=, ==, !=
  • Logical operators: &&, ||, !
  • Assignment operators: =, +=, -=, *=, /=, %=

Popular posts from this blog

Whitespace in C++

Data Types - Bool And Void C++

Data Types – Integer C++