Forum: C++ Aug 15th, 2008 |
| Replies: 1 Views: 344 |
Forum: C++ Aug 15th, 2008 |
| Replies: 4 Views: 458 |
Forum: C++ Aug 15th, 2008 |
| Replies: 6 Views: 651 |
Forum: C++ Aug 15th, 2008 |
| Replies: 4 Views: 458 Thaks it solved that problem. Now i'm getting the following error message
[Linker error] undefined reference to `vtable for ConjVector'
I got this error before when I was trying to compile a... |
Forum: C++ Aug 15th, 2008 |
| Replies: 4 Views: 458 Good morning, good afternoon and good evenings (to cover almost all posibilities)
The error message is as follows in DEV-C++ compiler
the problem is somewhere in tht ConjVect.cpp class that... |
Forum: C++ Aug 15th, 2008 |
| Replies: 3 Views: 352 or without using <strings>
#include <iostream>
using namespace std;
int main(){
char yourName[100]; /*you must declare how much input you're going to read */
cout<<"Enter your name: ";... |
Forum: C++ Aug 15th, 2008 |
| Replies: 3 Views: 352 #include <iostream>
#include <string>
using namespace std;
int main(){
string yourName;
cout<<"Enter your name: ";
cin>>yourName;
cout<<"Your name is: "<<yourName<<endl;
return 0; |
Forum: C++ Aug 15th, 2008 |
| Replies: 6 Views: 651 Are you completely sure about this?
As far as i know if you have declared the Point class' constructor Point() and then you state Point B(); then B is an instance of Point instantiated via the... |
Forum: C++ Aug 15th, 2008 |
| Replies: 6 Views: 594 Hope this helps for the point 1b)
bool passOrNot(const char& letter){
return (letter>='a' && letter<='d' || letter >='A' && letter<='D');
}
regards!! |
Forum: C++ Aug 9th, 2008 |
| Replies: 6 Views: 765 and write the other code as
std::pair<void*, PRECISION> SomeObject;
SomeObject.second()->Output(...).Handle(); |
Forum: C++ Aug 9th, 2008 |
| Replies: 6 Views: 765 you can try this approach that at least compiles
class COutput{
public:
virtual void Handle() = 0;
virtual ~COutput(){}
}; |