#include<iostream.h>
struct employee
{
char name[20];
float salary;
int birthday;
char sex [6];
};
void main()
{
struct employee emp[25];
for(int i=0;i<25;i++)
{
cout<<"Enter the Employee name :"<<endl;
cin>>emp[i].name;
cout<<"Enter the salary :"<<endl;
cin>>emp[i].salary;
cout<<"Enter the birthday :"<<endl;
cin>>emp[i].birthday;
cout<<"Enter the sex :"<<endl;
cin>>emp[i].sex;
}
for(i=0;i<25;i++)
cout<<" the name is:" << emp[i].name<<" , "<<"salary is: "<<emp[i].salary<<" , " <<
"the birthday is:" <<emp[i].birthday<<" , "<<" the sex is:"<<emp[i].sex<<endl;
}