Click here to Skip to main content
15,897,518 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to convert the given data bytes into hexadecimal and store it in a file? Pin
led mike26-Mar-09 4:34
led mike26-Mar-09 4:34 
QuestionHow to store or log the received data in a text file as it is in the Original format what i am receiving ? Pin
ursbala25-Mar-09 22:56
ursbala25-Mar-09 22:56 
QuestionRe: How to store or log the received data in a text file as it is in the Original format what i am receiving ? Pin
David Crow26-Mar-09 3:22
David Crow26-Mar-09 3:22 
Questionerror when run dll(vc++6.0) in vB6.0 Pin
aa_zz25-Mar-09 22:49
aa_zz25-Mar-09 22:49 
AnswerRe: error when run dll(vc++6.0) in vB6.0 Pin
Cedric Moonen25-Mar-09 22:50
Cedric Moonen25-Mar-09 22:50 
GeneralRe: error when run dll(vc++6.0) in vB6.0 Pin
aa_zz25-Mar-09 22:53
aa_zz25-Mar-09 22:53 
GeneralRe: error when run dll(vc++6.0) in vB6.0 Pin
Cedric Moonen25-Mar-09 22:59
Cedric Moonen25-Mar-09 22:59 
GeneralRe: error when run dll(vc++6.0) in vB6.0 Pin
Iain Clarke, Warrior Programmer25-Mar-09 23:15
Iain Clarke, Warrior Programmer25-Mar-09 23:15 
General[OT] Re: error when run dll(vc++6.0) in vB6.0 Pin
David Crow26-Mar-09 3:24
David Crow26-Mar-09 3:24 
GeneralRe: [OT] Re: error when run dll(vc++6.0) in vB6.0 Pin
Iain Clarke, Warrior Programmer26-Mar-09 3:59
Iain Clarke, Warrior Programmer26-Mar-09 3:59 
JokeRe: error when run dll(vc++6.0) in vB6.0 Pin
Iain Clarke, Warrior Programmer25-Mar-09 23:00
Iain Clarke, Warrior Programmer25-Mar-09 23:00 
GeneralRe: error when run dll(vc++6.0) in vB6.0 Pin
aa_zz25-Mar-09 23:05
aa_zz25-Mar-09 23:05 
GeneralRe: error when run dll(vc++6.0) in vB6.0 Pin
Iain Clarke, Warrior Programmer25-Mar-09 23:20
Iain Clarke, Warrior Programmer25-Mar-09 23:20 
GeneralRe: error when run dll(vc++6.0) in vB6.0 Pin
Cedric Moonen25-Mar-09 23:07
Cedric Moonen25-Mar-09 23:07 
QuestionRegistry functions not working when UAC is enabled. Pin
Le@rner25-Mar-09 22:13
Le@rner25-Mar-09 22:13 
AnswerRe: Registry functions not working when UAC is enabled. Pin
«_Superman_»25-Mar-09 22:36
professional«_Superman_»25-Mar-09 22:36 
AnswerRe: Registry functions not working when UAC is enabled. Pin
Iain Clarke, Warrior Programmer25-Mar-09 23:33
Iain Clarke, Warrior Programmer25-Mar-09 23:33 
QuestionMultiple OCX compilation process Pin
Sanjoy_Jana25-Mar-09 21:57
Sanjoy_Jana25-Mar-09 21:57 
AnswerRe: Multiple OCX compilation process Pin
led mike26-Mar-09 4:38
led mike26-Mar-09 4:38 
Questionsoftware engeenerin Pin
kkchando25-Mar-09 21:32
kkchando25-Mar-09 21:32 
AnswerRe: software engeenerin Pin
Cedric Moonen25-Mar-09 21:37
Cedric Moonen25-Mar-09 21:37 
AnswerRe: software engeenerin Pin
CPallini25-Mar-09 23:24
mveCPallini25-Mar-09 23:24 
AnswerRe: software engeenerin Pin
Michael Schubert25-Mar-09 23:38
Michael Schubert25-Mar-09 23:38 
AnswerRe: software engeenerin Pin
_AnsHUMAN_ 25-Mar-09 23:42
_AnsHUMAN_ 25-Mar-09 23:42 
Questiondata structure Pin
kkchando25-Mar-09 21:30
kkchando25-Mar-09 21:30 
Assignment

Your task is to implement a Catalog of Books.
1. For this first you have to implement Book class The Book class is a simple class to store information about a particular book and it has the following data members:
o Title of the book (string)
o Author of the book (string)
o ISBN of the book (string)
o Status of the book (bool)
Write default and parameterized constructors and setters getters for the Book class.
2. Catalog class is a linked list of Book objects and that can perform the following functionality.
o Add method to add a book in the Catalog
o printAllBooks method to print all the books in the Catalog.
o searchByAuthor method will take author name as an argument and will find a book written by that author.
o Available method to print all those books that are currently available. If the status of a book is false than it means that book is not available, if the status is true then it means book is available.
3. Include a main function as follows:
o Main will create 5 different books and add them in Catalog
o Print all books present in Catalog linked list.
o Search a Book by its Author name.
o Print all the books which are available.
Hint:
Make Nodes of Book type and then link them to make Catalog linked list. It means there will be another class between Book and Catalog and that is BookNode class.

GOOD LUCK

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.