š§© C++ Operators
ā What Are Operators?
Operators are symbols used to perform mathematical, relational, and logical operations.
š§® Types of Operators in C++
1. Arithmetic Operators
+ - * / %
Example:
int a = 5, b = 2;
cout << a + b; // Outputs 7
2. Relational O...
soumikdastidar.com1 min read