도서관 도서 관리 프로그래밍 #include #include struct book { char name[10]; char title[100]; int page; }typedef book; int main() { book bk[10] = {0}; int index = 0; int select; int del_index; int i; while(1) { printf("\t-------------------------------------------------\n"); printf("\t|\t\t\t\t\t\t|\n\t|입력[0] 삭제[1] 수정[2] 출력[3] 종료[-1]\t|\n"); printf("\t|원하는 동작을 입력해 주세요 : "); scanf("%d", &select); if(select == ..