Write a void function named TestEqual() that takes two parameters. Both parameters should be integers. The function should display a message that states whether the two numbers are equal. Hint: Your function prototype could look like void TestEqual(int x, int y)
Your main function should simply prompt the user for two numbers and then passes them to TestEqual as arguments. Hint: Your function call in main might look like TestEqual(num1, num2
In C++ please.