0
655views
Explain the Arithmetic Operators

Subject : Structured Programming Approach

Title : Fundamental of C Programming

Marks : 10M

1 Answer
0
4views

The operators are

  • ( + Addition)

  • ( - Subtraction)

  • ( * Multiplication)

  • ( / Division)

  • ( % Modulo division)

Eg:

  • 1) a-b
  • 2) a+b
  • 3) a*b
  • 4) p%q
Please log in to add an answer.