by RCane
Pointer Help - Confusion on usage
|
|
[2 replies] Last: int& rNumber This is not a pointer and has nothing to do with the ad... (by Peter87)
|
by Simbaku
Simplifying if statement
|
|
[2 replies] Last: What I would do is.. when the user takes a turn, the square that was... (by jonnin)
|
by Devil King
Addn and SUBTRACTn
|
|
[2 replies] Last: These are the instructions I got for the project I am working on P... (by Devil King)
|
by DaKingZ
Help with vectors!
|
|
[5 replies] Last: You re-create your vector every loop iteration because all of your log... (by Ganado)
|
by Sigge414
Linking rooms in an adventure game.
|
|
[6 replies] Last: the most efficient way would be to have 4 pointers, for each direction... (by jonnin)
|
by Ewittli
Language Tutorial
|
|
[2 replies] Last: It was written / updated about the time that C++11 was about to become... (by Duthomhas)
|
by axel0313
Warning final_number may be uninitialized i this function.
|
|
[2 replies] Last: Thanks i fixed it by typing final number = (final_number + last_number... (by axel0313)
|
by drew026
Creating an Array of objects and printing them
|
|
[4 replies] Last: Yes sure, try this: stringstream ss("One,two,three"); // #include <... (by Thomas1965)
|
by smoothstone
modulus error
|
|
[2 replies] Last: what does this even mean % is an operator A binary operator take... (by Chervil)
|
by JustAMan
Passing an object to a function in other class
|
|
[7 replies] Last: The pre-processor goes through each *.cpp file, replacing every #incl... (by JustAMan)
|
by trini14
Sentinel controlled loop
|
|
[1 reply] : It's easier to use a for loop: for(;;) { cout << "Enter positive n... (by Thomas1965)
|
by straslak
fstream skips first character
|
|
[6 replies] Last: Thank you, Andy! Your solution worked perfectly! I'm now in the proc... (by straslak)
|
How do I get length of pointer string |
|
[3 replies] Last: @dhayde: excellent reply @Ganado: very useful information, I didn't se... (by jpmolinamatute)
|
by rezahs
another but different filling in a matrix from file
|
|
[3 replies] Last: The main problem with your attempt is that you never allocate any memo... (by Ganado)
|
by niksacokica
does not name a type
|
|
[8 replies] Last: I have solved my problem. Thank you all! (by niksacokica)
|
by niksacokica
Printing a vector
|
|
[9 replies] Last: It is solved thanks for the help. (by niksacokica)
|
by JayGln
New Programmer Problem solving
|
|
[2 replies] Last: Ok so i'm going back 30, maybe 40 years and there is no way I can reme... (by SamuelAdams)
|
by konradedgar
Complex boost regex does not match string
|
|
[2 replies] Last: Duthomhas, your solution works as advertised. Thank you very much. (by konradedgar)
|
by darje
Deepest Node in a Given Tree algorithem
|
|
[4 replies] Last: It is difficult to understand only several pieces of a thing. Look at ... (by Duthomhas)
|
by Thelps
IF statements that feature strings with the != operator.
|
|
[1 reply] : if (a != "y" || a != "Y") However, keep in mind that the condition... (by helios)
|