Write C program to accept the details of employee and display them using structure. Details consist of Employee ID, Name, Designation, Department, Salary
3 years ago
C Programming
C program to accept the details of employee and display them using structure. Details consist of Employee ID, Name, Designation, Department, Salary.
#include<stdio.h>
struct employee
{
int e;
char name[20];
char designation[20];
char dept[20];
int sal;
};
int main()
{
struct employee a;
printf("Enter Employee Details:\n");
printf("-------------------------------\n");
printf("Enter Employee-Id : ");
scanf("%d",&a.e);
printf("Enter Name : ");
scanf("%s",a.name);
printf("Enter Designation : ");
scanf("%s",a.designation);
printf("Enter Department : ");
scanf("%s",a.dept);
printf("Enter Salary : ");
scanf("%d",&a.sal);
printf("-------------------------------");
printf("\nEmployee Details: \n---------------------------------\n");
printf("Employee-Id : %d\n",a.e);
printf("Name : %s\n",a.name);
printf("Designation : %s\n",a.designation);
printf("Department : %s\n",a.dept);
printf("Salary : %d\n",a.sal);
return 0;}
Rajiv Shah
Jul 21, 2022