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
Ranked #4K
~3K People Reached
Favorite Forums
Favorite Tags
c++ x 11

6 Posted Topics

Member Avatar for STUDENT#101
Member Avatar for Narf!!!

Good morning, good afternoon and good evenings (to cover almost all posibilities) The error message is as follows in DEV-C++ compiler [QUOTE] Compiler: Default compiler Building Makefile: "I:\cpp\Makefile.win" Executing make... make.exe -f "I:\cpp\Makefile.win" all g++.exe include/Test.o include/Objeto.o include/ConjuntoBase.o include/IteradorBase.o include/ConjVector.o -o "TestEstructurasDiscretas.exe" -L"C:/Dev-Cpp/lib" include/ConjVector.o(.text+0x45):ConjVector.cpp: undefined reference to `vtable for ConjVector' …

Member Avatar for Narf!!!
0
101
Member Avatar for daviddoria

[QUOTE=vijayan121;670126][ICODE]Point B();[/ICODE] is the declaration of a function called 'B' which takes no arguments and returns a Point. modify to [ICODE]Point B ;[/ICODE] and you have the definition of a variable called 'B' which is of type Point (initialized via the default constructor).[/QUOTE] Are you completely sure about this? As …

Member Avatar for Narf!!!
0
220
Member Avatar for jonabie

[code] #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; } [/code]

Member Avatar for jonabie
0
77
Member Avatar for THAPELO

Hope this helps for the point 1b) [code] bool passOrNot(const char& letter){ return (letter>='a' && letter<='d' || letter >='A' && letter<='D'); } [/code] regards!!

Member Avatar for Narf!!!
0
110
Member Avatar for JaR

you can try this approach that at least compiles [code=c++] class COutput{ public: virtual void Handle() = 0; virtual ~COutput(){} }; class CSingleOutput:public COutput{ private: //eg. std::vector<float>* seed; public: CSingleOutput(const std::vector<float>& s){ // you can run the code for handle the output or assing to seed the address of s …

Member Avatar for JaR
0
2K

The End.