enter name and post of five employees and display using structure in C-Program
//Input name and post of 5 employees and display records using structure. #include<stdio.h> #include<conio.h> main() { int i; struct employee { char name[20]; char post[15]; } e[5]; for(i=0;i<5;i++) { printf("Enter …
enter name and post of five employees and display using structure in C-Program Read More