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 order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS