/*Array of Structure*/ #include struct book { int id; char name[40]; }; void main() { struct book b[10]; int i,n; printf("Enter total number of book : "); scanf("%d",&n); for(i=0; i