by Smooth23
double linked list, removeAtTail busted?
|
|
[7 replies] Last: Well, removeFirstOccurrence() looks very wrong. On line 29 you set the... (by coder777)
|
convert uppercase from a string |
|
[7 replies] Last: nevermind i got it... btw, why you don't use this? cout << "\n in... (by chipp)
|
by Stewbond
Appending to arrays
|
|
[3 replies] Last: You might want to look at the data() method of std::vector .... (by cire)
|
by kw1991
random number generator
|
|
[8 replies] Last: http://programsplusplus.blogspot.in/2012/01/3-program-to-generate-rand... (by fatal1ty92)
|
by boyer420z
Calculating primes between 1 and 1000
|
|
[4 replies] Last: Obviously count should be defined and initialized to 0 at the start of... (by cire)
|
by jakSun8
Question on deleting pointers
|
|
[5 replies] Last: (Don't forget to check for empty containers. Deleting nullptrs is gene... (by Gaminic)
|
by john99
Sorting in alphabetic order
|
|
[1 reply] : Rolling your own comparison function and using that is probably the ea... (by cire)
|
by Josh Sachs
Multiple inputs....
|
|
[2 replies] Last: As ResidentBiscuit said, you can use a std::vector to store the scores... (by cire)
|
by teague00
Searching a file
|
|
[2 replies] Last: When reading in, you don't check to see that you have an address (a to... (by cire)
|
by DwrMatt
Stroustrup PPP ch.5 : Bulls and Cows
|
|
[1 reply] : A "bull" is a guess that's correct and in the right position in seque... (by cire)
|
by Need4Sleep
Passing Functions as arguments(help)
|
|
[7 replies] Last: Your prototype parameters don't match the actual signature of the func... (by Bench82)
|
by Kickasstimus
Reading from file to vectors (warning, grammer fail)
|
|
[1 reply] : Do something like this: std::vector<std::string> v; while(ist.good()) ... (by coder777)
|
tic tac toe |
|
[1 reply] : if you have a 2 dimensional array you can check it like so: if((a ... (by coder777)
|
by yhangel
automatically end program error
|
|
[4 replies] Last: Note that <conio.h> is a deprecated header. Wazzak ... (by closed account zb0S216C)
|
by pzling
Compiler not recognising constructor?
|
|
[5 replies] Last: it just points to the start of the argument list... it doesn't know wi... (by Jikax)
|
by joatmon
Big Numbers
|
|
[5 replies] Last: I think in C++ you can create your own data type, can't you? (by Baso)
|
Problems with coding a basic calculator |
|
[6 replies] Last: I was finally able to figure out the problem I was having and finally ... (by closed account iT7X92yv)
|
by TomCW
'Find and Replace' Problem
|
|
[1 reply] : Don't replace things. What if Idioma.getTexto("print") is longer than ... (by hamsterman)
|
by Mediamessiah
LinkedQueue
|
|
[1 reply] : I cant use the ll.getHead() because LinkedList ll is private. To avoi... (by hamsterman)
|
by flipi2005in
Please help remove errors from the program
|
|
[12 replies] Last: What course are you even on? - If it isn't a programming one, why have... (by WhiteWind)
|