Current Categories - C-programming
*Arithmetic operators – It is a binary operator.
| Symbol |
Meaning |
| + |
Addition |
| - |
Substraction |
| * |
Multiplication |
| % |
Division |
Example-let us make a programm,which will take two numbers(operand) and add,substract,multiply,
divide.
*Output-
| enter two number:10 5 |
| the sum is:15 |
| the substraction is:5 |
| the multiplication is:50 |
| the division is:2 |
|
|