-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.c
24 lines (22 loc) · 895 Bytes
/
display.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include"header.h"
void view(employee_database *new)
{
while(new!=NULL)
{
printf("\n");
printf("-----------------------------------------------------------------\n");
printf("Employee id : %s\n",new->emp_id);
printf("Name : %s\n",new->name);
printf("Gender : %s\n",new->gender);
printf("Email_id : %s\n",new->email_id);
printf("Band : %s\n",new->band);
printf("DOJ : %s\n",new->doj);
printf("Status : %s\n",new->status);
printf("Mobile : %s\n",new->contact_no);
printf("Reporting_manager : %s\n",new->reporting_manager);
printf("Reportee : %s\n",new->reportees);
printf("Tech_area : %s\n",new->tech_area);
printf("Project_info : %s\n",new->project_info);
new = new->link;
}
}