There is a function template defined as follows: templa...
单项选择题There is a function template defined as follows:
template
void Max(T a, T b, T &c)
{c=a+b;}
Which of the following options is correct ().
A、 float x, y, z; Max(x,y,z);
B、int x; float y,z; Max(x,y,z);
C、 int x,y; float z; Max(x,y,z);
D、float x; int y, z; Max(x,y,z);