Hi, so I need help, with this kind of "library"(in the physical use of the word)
that i'm trying to do.
I need to store "books", keep them stored till the user asks to delete them. I think that's the gist of it. Here's the code, my bad if you find it crude.
PLEASE ALWAYS USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post. http://www.cplusplus.com/articles/jEywvCM9/ http://www.cplusplus.com/articles/z13hAqkS/
Hint: You can edit your post, highlight your code and press the <> formatting button.
You can use the preview button at the bottom to see how it looks.
So are you asking where you should write to the file or how to do it?
You may think your variable names are cute or funny, but it makes it very hard for someone like me to read and figure out. C and C++ allows 256 characters for a variable name. Do not be afraid to use a descriptive name the says what the variable does. Just a thought.
While I am here it is best to stay away from "system" anything. Not only are your system call specific to Windows not everyone can use them. See http://www.cplusplus.com/forum/beginner/1988/ for some ideas.