Hi All, I'm doing a project creating a 'Library of Books'. How should I go about 'removing' a book from my current library if let's say, a user has 'borrowed' a book? Many thanks!! Code: struct info{ char title[99]; char author[99]; char publisher[99]; char subject[5]; char index[99]; int page; char location[99]; char type[99]; float price; } books[N] = { {"Upgrading and ...