Arithmetic Operators

What Does Arithmetic Operators Mean?

Arithmetic operators, in C#, are operators used to perform arithmetic operations that include multiplication, division, addition and subtraction. With the exception of the subtraction operator, where "-" is used to indicate a negative number, arithmetic operators are binary operators that take two operands. The operands are of numeric data type, and perform in a similar manner as in other languages such as C and C++.

Advertisements

Arithmetic operators "+" and "-" are used to manipulate pointers by adding or subtracting the numeric value to or from the pointers without generating any exception during overflow of the of the pointer’s domain. Arithmetic operators can be overloaded when used with user-defined types to extend the nature of normal operators, thus providing additional functionalities.

Techopedia Explains Arithmetic Operators

The list of arithmetic operators available in C# includes:

  • * : used to perform multiplication of operands of integer, floating-point and decimal type. It returns a multiplicative product of the two operands.
  • / : used to divide operands of integer, floating-point and decimal type. It returns the quotient of its operands.
  • % : used to compute the remainder of the division between two operands, which can beof integer, float, double or decimal type.
  • + : used with different types of operands, resulting in different type of results. In case of numeric and enumeration types, the predefined addition operator calculates the sum of two operands, while the use of string type operand results in a concatenated string. It can also be used to combine delegates of a similar type.
  • – : used with all numeric types like integer, float, decimal and enumeration to calculate the difference between its operands. It can also be used to remove delegates of a similar type.

Advertisements

Related Terms

Latest DevOps Terms

Related Reading

Margaret Rouse

Margaret Rouse is an award-winning technical writer and teacher known for her ability to explain complex technical subjects to a non-technical, business audience. Over the past twenty years her explanations have appeared on TechTarget websites and she's been cited as an authority in articles by the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine and Discovery Magazine.Margaret's idea of a fun day is helping IT and business professionals learn to speak each other’s highly specialized languages. If you have a suggestion for a new definition or how to improve a technical explanation, please email Margaret or contact her…