Search Results

Showing results 1 to 11 of 11
Search took 0.01 seconds.
Search: Posts Made By: Narf!!!
Forum: C++ Aug 15th, 2008
Replies: 1
Views: 344
Posted By Narf!!!
post what you have done!
Forum: C++ Aug 15th, 2008
Replies: 4
Views: 458
Posted By Narf!!!
Thanks a lot, again!!!
Forum: C++ Aug 15th, 2008
Replies: 6
Views: 651
Posted By Narf!!!
Forum: C++ Aug 15th, 2008
Replies: 4
Views: 458
Posted By Narf!!!
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
Posted By Narf!!!
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
Posted By Narf!!!
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
Posted By Narf!!!
#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
Posted By Narf!!!
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
Posted By Narf!!!
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
Posted By Narf!!!
and write the other code as

std::pair<void*, PRECISION> SomeObject;
SomeObject.second()->Output(...).Handle();
Forum: C++ Aug 9th, 2008
Replies: 6
Views: 765
Posted By Narf!!!
you can try this approach that at least compiles



class COutput{
public:
virtual void Handle() = 0;
virtual ~COutput(){}
};
Showing results 1 to 11 of 11

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC