Operators in programming are symbols or keywords that performs operations one and more operands and produce a result.
Different types of operators:-
1) Arithmetic(+,-,*,/,%)
2) Comparison(relational or arithmetic)(>,<,>=,<=,==,!=)
3) Logical Operators(||, &&,!)
4) Bitwise operators (&,|,^,~,<<,>>)no need to use
5) Assignment Operators(=, +=,-=,*=,/=, %=)

0 Comments