๐น Operators in C++
Operators are symbols that perform operations on variables and values.For example:
int a = 10, b = 5;
cout << a + b; // + is an operator (Addition)
C++ operators are mainly divided into categories:
1. Arithmetic Operators
Used for mathematical op...
yesamitsingh.hashnode.dev4 min read