Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~353 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for someguyjbb

Please help the code compiles but then gives runtime error and I have no Idea why please help with the insert of the book the .h file [CODE]#ifndef BOOK_H #define BOOK_H #include <string> #include "Person.h" using namespace std; struct node { node *left; node *right; Person data; }; class Book …

Member Avatar for StuXYZ
0
128
Member Avatar for someguyjbb

I have to make a copy constructor for a queue class and decided to use enqueue to put the files in, but for some reason it gives a runtime error. so I really need some help in figuring out what is wrong. Thanks in advanced [CODE] #include <cstddef> #include <string> …

Member Avatar for Ancient Dragon
0
116
Member Avatar for someguyjbb

please help It says when creating the object of ArrayCharQueue that I can't because it is abstract and am not understanding why please help [CODE]//array based charqueue // must use abstract base class char queue // must be dynamically allocated #include "charqueue.h" #include <iostream> #include <cstdlib> class ArrayCharQueue : public …

Member Avatar for mike_2000_17
0
109