by tekmunkey
Seriously stupid question
|
|
[1 reply] : Yes, that there is non-standard syntax. (It shouldn't compile.) It ... (by Duthomhas)
|
by sequba
Counting divisors
|
|
[9 replies] Last: You're right, but this is enough for me at the moment. Maybe I'll try ... (by sequba)
|
by problems99
linked list and fonction in a structure
|
|
[5 replies] Last: Sorry, I'm stupid. I've understood that my problem was impossible. It'... (by problems99)
|
by xander333
First time using structs (1,2)
|
|
[32 replies] Last: There is obviously some confusion here between declaring and defining ... (by Galik)
|
converting a string to a int value |
|
[9 replies] Last: this is an example of the source code and the parameters of the functi... (by Mihay07)
|
by gpfs7
cant figure out how to open a file called musicfile
|
|
[1 reply] : Your main() function has no type and no opening brace: int main() ... (by Galik)
|
by Chazzmundo
2d array error
|
|
[2 replies] Last: LB sorry this was a problem i mistakenly wrote , i have edited it ... (by Chazzmundo)
|
by hakermania
Question about Constructor
|
|
[no replies]
|
problem with syntax enum |
|
[2 replies] Last: C++ is case sensitive, just use enum Boolean{False,True}; (by LB)
|
by patipati
How to make a source code of these executable files?
|
|
[3 replies] Last: You can decompile a C++ program but writing from scratch is usually si... (by Bazzy)
|
by claudiordgz
My program crashes after a few moments, it has no compiling errors
|
|
[5 replies] Last: Hi wasabi, Thanks a lot, your comment really got me going to try new ... (by claudiordgz)
|
by angelaang
string issues in header
|
|
[1 reply] : you're missing std namespace. either replace string with std::string ... (by hamsterman)
|
by AlphaBravo
How do I call a function that returns a vector pointer
|
|
[4 replies] Last: Thanks LB. I'm teaching myself and Ive found no comprehensive tutorial... (by AlphaBravo)
|
by pennywise
decode a text file
|
|
[3 replies] Last: You'll have to create a new file with the translation. This is because... (by wasabi)
|
by wasabi
Allocating on the stack
|
|
[13 replies] Last: AHA! Yeah, reading that in bold solved it for me. A pointer as an a... (by wasabi)
|
by waqqassheikh
How to use a friend function in this code.
|
|
[4 replies] Last: Thanks a million! It works perfectly now. Here's the final code: ... (by waqqassheikh)
|
How to add additional member functions to existing C++ objects. |
|
[5 replies] Last: Thanks for the replies. I have actually implemented it the way yous ha... (by LoneJockRanger)
|
by dlugo
What does "ostream& os" do or mean in C++?
|
|
[6 replies] Last: You had a very dangerous logical error. char hexDigits = {'0', '1... (by ne555)
|
by Hextril
Guess the number
|
|
[10 replies] Last: my bad (by FeZedra)
|
by erickulcyk
Equals Operator Question
|
|
[14 replies] Last: That's a syntax error, right there. You need another ( after the if... (by LB)
|