✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
template <class T > class A
{Public: T x1; T x2;
T func (T x3)
{X3 + = x1 + x2;
return x3;
}
};
int main ()
{A <float > A1;
A1.x1 = 5.5; A1.x2 = 0.6;
cout < < A1.func (1.1);
}
(C++)