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
~549 People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for hellokitty88

I am trying to do a sequential string, but when I run my program I recieve three errors:the first one talks about 'searchList' : cannot convert parameter 3 from 'const char [4]' to 'std::string [] ( I tried putting code tags by inserting my code between the [code] [/code], but …

Member Avatar for Ancient Dragon
0
117
Member Avatar for hellokitty88

I am reading a text file from an input file. The problem is that when I cout the text to the screen not all of the original text file is showing. The text file is large, but I was wondering if there was any way I could possibly display all …

Member Avatar for Jishnu
0
124
Member Avatar for hellokitty88

Can someone help me with my delete function? I am having trouble figuring out why my delete function is not reporting false when attempting to delete a bank id that does not exist. Thanks. [code=c++] bool Bank::RemoveBankNumber(int bankID) { Bank *temp, *back; if (head == NULL) return false;//(isEmpty()) return; // …

Member Avatar for Ancient Dragon
0
112
Member Avatar for hellokitty88

[COLOR=#0000ff]//this is the class that I must declare to be public class[/COLOR][COLOR=#000000] Zoo[/COLOR] { [COLOR=#0000ff]private[/COLOR]: [COLOR=#008000]//create 4 pointers to instances of house class [/COLOR]Animal *M; Animal *C; Animal *D; Animal *L; }; [COLOR=#0000ff]// constructor [COLOR=#000000]Zoo[/COLOR]::[COLOR=#000000]Zoo[/COLOR]() { Animal *M;= [COLOR=#0000ff]new[/COLOR] Animal(); [COLOR=#0000ff]char[/COLOR] M[64]; strcpy(M, [COLOR=#a31515]"Monkey"[/COLOR]); M->SetHouseName(M); Animal *C; = [COLOR=#0000ff]new[/COLOR] Animal(); …

Member Avatar for Duoas
0
103
Member Avatar for hellokitty88

I need some help figuring what I should do when I dynamically allocate memory to four instantces pointing to an animal class. After I allocate memory in the constructor, I must set it to "Lion", "Cat", "Dog", "Monkey". So far this is what I have written. Feedback would be great! …

Member Avatar for ithelp
0
93

The End.