#include<iostream>
#include<cstdlib>
#include<string.h>
using namespace std;
template<typename X>class list
{
X *l[10];
public:
void insert(X *ele);
void display();
};
template<typename X>void list<X>::insert(X *ele)
{
static int i;
l[i]=ele;
i++;
}
template<typename X>void list<X>::display()
{
static int i;
cout<<"\nThe Name #:"<<i<<"\t"<<*l[i]<<endl;
i++;
}
int main()
{
string s;
list<string> l1;
cout<<"\nEnter Name:\t";
cin>>s;
l1.insert();
l1.display();
cout<<endl;
system("pause");
return 0;
}
devourer17 0 Newbie Poster
devourer17 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.