c++ template
template <class T>//or <typename T> it´s the same
//T can be int, float, double, etc.
//simple use example:
T sum(T a, T b)
{
return a + b;
}
sum(5.0f, 10f);//sum using float
sum(2,3);//sum using int
c++ template
template <class T>//or <typename T> it´s the same
//T can be int, float, double, etc.
//simple use example:
T sum(T a, T b)
{
return a + b;
}
sum(5.0f, 10f);//sum using float
sum(2,3);//sum using int
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us