by hopesfall
Questions about C++ in general
|
|
[1 reply] : What is the primary C++ syntactic structure that implements an Abstr... (by clanmjc)
|
by yasar11732
What exactly should go into a destructor.
|
|
[5 replies] Last: duly noted, I guess it's out of habit before using a pointer and to in... (by clanmjc)
|
by mrbiggles
Operator overload, why return reference?
|
|
[9 replies] Last: Oh ok. I see. But for ++ ++i to work it would have to return a non-c... (by mrbiggles)
|
by Ishtar
Function type checking
|
|
[9 replies] Last: Thanks to everyone for such informative replies. Conducting further ... (by Ishtar)
|
templates |
|
[2 replies] Last: Thanks! I was curious as the IDE I am using is currently reporting it... (by thephysicsguru)
|
by shooninjo
Insert multiple letters in a deque
|
|
[2 replies] Last: so I assume that the order will be: A-B-C etc or C-B-A ? (by shooninjo)
|
by cplusx2
File IO - eof problem
|
|
[2 replies] Last: Wow, thanks man, it works!!! Btw, if i put sum >> number; before the... (by cplusx2)
|
by amplechin
Program Check - POINTERS
|
|
[2 replies] Last: Using the spacebar would also not go amiss. (by closed account z05DSL3A)
|
by amplechin
Help with Pointers
|
|
[1 reply] : It is correct, but you should declare main as int main() instead of ... (by Wisely Done)
|
Undefined references |
|
[3 replies] Last: Ahh, that was it. "g++ *.cpp", even though I'm workign with C files. S... (by NewProgrammer)
|
by Ahmad Shoaib
Please guide about the following errors
|
|
[1 reply] : The linker cannot find the function enterdata . This means you have ... (by Moschops)
|
by yasar11732
Circular dependencies and headers
|
|
[1 reply] : see http://cplusplus.com/articles/Gw6AC542/ (by hamsterman)
|
by orangeapple
please help close console in c++
|
|
[7 replies] Last: You can return from a function returning void early with return; You... (by Athar)
|
by Pip3mAn
Copy constructor?
|
|
[4 replies] Last: class myClass{ public: int ptr1; (by ne555)
|
by poda19
reference files
|
|
[1 reply] : A solid C++ reference is http://en.cppreference.com/w/cpp winsock is ... (by Moschops)
|
by yhangel
simplifying d0-while loop
|
|
[3 replies] Last: Well, it's a boolean function, so it can return one of two values, tru... (by MrHutch)
|
by Steves
What do pointers have to do with Functions
|
|
[8 replies] Last: No this is great I understand it now. But everywhere I'm reading onl... (by roberts)
|
by Im Tryin
Error C2784
|
|
[2 replies] Last: Nothing like a fresh perspective! Thank you very much! I knew the prob... (by Im Tryin)
|
by erdenee
Hello Virtual Function Animal
|
|
[12 replies] Last: Actually there're 3 errors: 1. You cannot access the private member 'n... (by coder777)
|
by BNut
What is the meaning of const in this case???
|
|
[2 replies] Last: Thank you Peter87 (by BNut)
|