Answer to Question #46613 in C++ for amanda shaffer
Question #46613
Write a function template Square() that returns the square of its only argument.
Expert's answer
template <class T>
inline T square(T x)
{
T result;
result = x * x;
return result;
};
Need a fast expert's response?
Submit orderand get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment