#include <iostream>
using namespace std;
template <class T>
void show(T c)
{
    cout<<"\nTemplate Display : "<<c;
}
void show(int c)
{
    cout<<"\nExplicit Display : "<<c;
}
int main()
{
    show(4+7);
    show(2.8-1.6);
    show("Aswini");
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: