write a program to impliment all the Arithmetic operator
Answers
Answer: C Arithmetic operators are used to perform mathematical calculations like addition, subtraction, multiplication, division and modulus in C programs.
Answer:
The Arithmetic operators are some of the C Programming Operator, which are used to perform arithmetic operations includes operators like Addition, Subtraction, Multiplication, Division and Modulus. All these Arithmetic operators in C are binary operators which means they operate on two operator
In this arithmetic operator in c program, We are using two variables a and b and their values are 12 and 3.We are going to use these two variables to perform various arithmetic operations present in C Language.
For example, if the data type is an integer then division arithmetic operators in c will produce the integer value by rounding the value (5 / 2 = 2).