#67_Function Template and Template with Parameters in C++

 #include <iostream>

using namespace std;
// Function Template and Template with Parameters in C++

template <class T1class T2>
float add(T1 aT2 b)
{
    float d;
    d = a + b;
    return d;
}

template <class T>
void swapp(T &aT &b)
{
    T temp = a;
    a = b;
    b = temp;
}
int main()
{
    float sum = add(5.54.5);
    cout << "The sum is : " << sum << endl;
    int x = 10y = 15;
    swapp(xy);
    cout << "x = " << x << ", y = " << y << endl;
    return 0;
}

Comments

Popular posts from this blog