diff --git a/Employee .c b/Employee .c new file mode 100644 index 0000000..a34b8ce --- /dev/null +++ b/Employee .c @@ -0,0 +1,31 @@ +#include +struct Employee + { + char Name[20]; + int Emp_id; + float Salary; + }; +int main() +{ + struct Employee emp[20]; + int i,n; + printf("Enter the no. of Employee: "); + scanf("%d",&n); + for(i=0;i