Vector code help In your main() you don't pass a parameter to Vector::fillVector(), even tho the prototype says it ne...
Classes not being Inherited and help with virtual Functions?Your "compute_pay" function needs to be declared virtual in your base class, that way all the derive...
Making a string array of Char arrayLine 29 needs to be: [code] chars[i] = tolower(chars[i]); [/code] because tolower only returns the...
Overloading !The operator== needs to be a *global* function, ie, outside the body of the class, such as where lin...
Overloading !You weren't specific on what these operators should do. IIRC, Complex numbers multiply/compare equal...