struct Employee
{
int emp_id;
char emp_name[30];
char gender[10];
int emp_sal;
char email_add[50];
};
main()
{
struct Employee d[100];
int i,n;
printf("Enter the Number of Employees Details: ");
scanf("%d",&n);
for(i=0;i
printf("Enter the ID of Employ:");
scanf("%d",&d[i].emp_id);
printf("Enter the name of the Employ:");
scanf("%s",d[i].emp_name);
printf("Enter the gender:");
scanf("%s",d[i].gender);
printf("Enter the Salory:");
scanf("%d",&d[i].emp_sal);
printf("Enter the Email ID :");
scanf("%s",d[i].email_add);
printf("\n\n");
}
for(i=0;i
}