Assignment 1 Try the subtraction operator on your own. Try replacing the addition operator with subtraction operator. You should get the result as 3. Assignment 2 Write a program to demonstrate the use of modulus operator. Please note that Modulus operator finds the remainder of division. eg. c = a % b; (a=5, b=2) You should obtain the result as 1.