answersLogoWhite

0

What is an arithmetic operator in c?

User Avatar

Anonymous

11y ago
Updated: 8/21/2019

+

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is an arithmetic operator in c program?

An arithmetic operator is any of the "atomic" operators to do the following math operations: + addition - subtraction / division * multiplication % modulus division


What is precedence between relational operator and arithmetic operator?

Arithmetic operators (+, -, *, /, % ) have greater precedence over relational operators (<, >, <=, >=, ==, !=) in C language.


C program to implement arithmetic assignment operator?

y=2x2+3x+1


Arithmetic operator that divides contents of a cell?

The arithmetic operator that divides contents of a cell is the front slash. =A3/B3


What is an arithmetic operator that multiplies?

Multiplication


What arithmetic operator multiplies by 0.01?

percentage


Arithmetic operator that multiplies by 0.01?

percentage


Which arithmetic operator have highest precedence?

In all popular high-level programming languages, the order in which operators are interpreted ("operator precedence") is vital to ensuring that all compilers execute instructions in precisely the same manner, as the "order of operations" rule is vital in mathematics. In the case of C and C++, arithmetic operators are executed prior to logic operators. For a detailed description of operator precedence, see the related links below.


Arithmetic operator that makes a number negative?

Negation


What arithmetic operator performs division?

forward slash /


In excel what is the arithmetic operator that multiplies by 0.01?

percent


What is operator in java?

An operator is a symbol that does something in Java. for ex: "+" is an arithmetic operator that adds two numbers. ">" is a logical operator that checks if one number is greater than the other. There are many different types of operators in Java like Arithmetic, Logical, Relational and Assignment operators