Lab Assignment
Define an int function that takes 6 parameters. 2 of them, a and b are of type int- 4 other parameters are pointers to int. The function returns a mod b (a%b)- The 4 pointers point to the sum, the difference, the product, and the quotient of a and b, respectively. In the main function, enter 2 numbers and call your function to find the 5 results (sum, difference, product, quotient, and remainder). Note, you must bring the results to the main to print.