i was trying to store name and in formation about an employee on an array that i will need at some times (print them later) but first name seem to be owerated by the new one .how can i store ifor as mach as i wan in array C++
#include<iosteam>
#include<string>
usingnamespace std;
int main()
{
int inforSize=5;
int a[20];
int b[20];
int c[20];
int d[20];
int e[20];
int information[inforSize]={ a,b,c,d,e}
cout<<"enter your name :";
cin>>a;
cout<<"enter your name :";
cin>>b;
cout<<"enter your name :";
cin>>c;
cout<<"enter your name :";
cin>>d;
cout<<"enter your name :";
cin>>e;
cout<<"names are "<<information;
return 0;
}