Here are the declarations for the two versions of getInput
- void get(int&, int&, int&);
- void get(double&, double&, double&);
Which version should be called (1 or 2) for each of the following calls:
int a, b, c; double x, y, z; float p, q, r; getInput(a,b,c); // A. getInput(x,y,z); // B. getInput(p,q,r); // C