பின்வரும் நிரலின் வெளியீட்டை எழுதுக.
#inclue < iostream >
using namespace std;
void print(int i)
{ cout << " it is Integer" << i << endl; }
void print(double f)
{ cout << '' It is float" << f << endl; }
void print(string c)
{cout << '' It is string'' << c << endl; }
int main ( ) {
print(10);
print(10.10);
print("Ten");
return 0;
}