Thu Nov 13, 2008 7:59 pm
#include <iostream>
using namespace std;
template <class type1, class type2>
void myFunction(type1 x, type2 y)
{
cout << x << ' ' << y << '\n';
}
int main()
{
myFunction(10, "hi");
myFunction(0.23, 10L);
return 0;
}
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.