Computer Science, asked by PragyaTbia, 1 year ago

The number of binary arithmatic operator in C is?
a) 5
b) 4
c) 6
d) 7

Answers

Answered by sadhya15
12
5 is your answer
thanks
Answered by smartbrainz
8

There is 5 number of arithmetic operators in C.

Answer: Option (a)

Explanation:

In C programming, the number of a binary arithmetic operator is five. It is used for performing arithmetic/mathematical operations on operands. The binary operators falling in five categories which are explained below:

  • Addition: This operator symbol is “+” which adds two operands that are expressed has a+b.
  • Subtraction: This operator symbol is "- ", which subtracts two operands. For instance a-b.
  • Multiplication: This operator symbol is“*”, which multiplies two operands that can be expressed as a*b.
  • Division: This operator symbol is ‘/’ , which divides the first operand with the second that can be expressed as a/b.
  • Modulus: This operator symbol is ‘%’, which returns the remainder at the time when the first operand is divided with the second-one that can be expressed in the form of a%b.

Similar questions