how to make a simple college library program.

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
Hello munim,

So, what is stopping you?

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

Andy
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.