Computer Science, asked by pradeepsahu5446, 8 months ago

Explain with example, defferent types of operators used in c++​

Answers

Answered by akshitatanishasingh
0

Answer:

+ (Addition) – This operator is used to add two operands.

– (Subtraction) – Subtract two operands.

* (Multiplication) – Multiply two operands.

/ (Division) – Divide two operands and gives the quotient as the answer.

% (Modulus operation) – Find the remains of two integers and gives the remainder after the division.

++ (Increment) – Used to increment an operand.

— (Decrement) – Used to decrement an operand.

Explanation:

Similar questions