Forum: C++ Mar 16th, 2008 |
| Replies: 1 Views: 1,000 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 []... |
Forum: C++ Dec 19th, 2007 |
| Replies: 4 Views: 4,244 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... |
Forum: C++ Nov 25th, 2007 |
| Replies: 3 Views: 5,896 I do not quite know how to use the debugger. Do I just mark the line and then select debug? |
Forum: C++ Nov 25th, 2007 |
| Replies: 3 Views: 5,896 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.
bool... |
Forum: C++ Oct 31st, 2007 |
| Replies: 1 Views: 432 //this is the class that I must declare to be public
class Zoo
{
private:
//create 4 pointers to instances of house class
Animal *M;
Animal *C;
Animal *D;
Animal *L; |
Forum: C++ Oct 26th, 2007 |
| Replies: 1 Views: 1,638 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",... |