Hi,
I want to write a Generic Method which will display both Integer and Char array.

My Sample Program Goes Below:
=============== =========

#include<iostre am>
using namespace std;

void displayInt(int* intArray)
{
for(int i = 0 ;i< 5;)
cout<<intArray[i++]<<endl;
}

void displayChar(cha r* charArray)
{
for(int...