InterviewSolution
Saved Bookmarks
| 1. |
Distinguish between '/ ' and '%' operators. |
|
Answer» '/ ' divides first number with second number and returns the quotient. '%' divides first number with second number an returns the remainder. |
|