Write a fuction template Square() that returns the square of its only argument.
1
Expert's answer
2014-09-29T01:34:09-0400
//Question #46609, Programming, C++ #include <iostream> using namespace std; template<class T> T Square(T a) { return a*a; } int main() { int a = 3; cout << Square(a); system("pause"); return 0; }
Comments
Leave a comment