how to make a simple college library program.

Jan 27, 2021 at 11:41am
hello there

i want to make a simple college library program in which one can add the information of the book like book name publish day last day and name of the peson who received the book. it should also have a function to search a certain book and delete that book too.

than you/

 
Last edited on Jan 27, 2021 at 11:42am
Jan 27, 2021 at 12:04pm
Hello munim,

So, what is stopping you?

Show what you have planed and the code that goes with it.

Andy
Jan 27, 2021 at 1:34pm
A good start would be to declare a struct Book with the required fields and store them in a std::vector. Then you can use std::find_if and std::erase_if to find and delete a book.
Topic archived. No new replies allowed.