Answer:
The code is in the Explanation
Step-by-step explanation:
#include <iostream>
using namespace std;
int main() {
int xValNew = 0;
int yValNew = 0;
CoordTransform(3, 4, xValNew, yValNew);
cout << "(3, 4) becomes " << "(" << xValNew << ", " << yValNew << ")" << endl;
return 0;}