#include #include #include using namespace std; static int n1; template void Show(VariousType value) { cout<< " \n Round : "<< n1++ <<" --> Data Type Who Knows \n Data Type " << typeid(value).name() << " Value assigned : " << (value); } int main() { // Call Show to displays an integer int Integer = 1234; cout<<(" Value:Integer Type : "); Show(Integer); // Call Show to displays a character //'\u033F' string Character = "12 character"; cout<<("\n Value: String type : "); Show(Character); // Call Show to displays a decimal double DoublePrecision = 12345.50; cout<<("\n Value: double data type : "); Show(DoublePrecision); return 0; }