by brocknoland
Changing element of vector does not persist or does iteration make a copy
|
|
[7 replies] Last: References to the rescue! std::string& word = *iter; (by Duthomhas)
|
by Runic
[Error] 'else' without a previous 'if'
|
|
[11 replies] Last: Wait, never mind, that actually does work! I was entering N as a numbe... (by Runic)
|
by Eithman
What are the 80/20 fundamentals I should learn?
|
|
[2 replies] Last: I would recommend starting by reading up on variables, arrays, loops, ... (by CplusplusAcolyte)
|
by rvrst
RPS code
|
|
[4 replies] Last: Gotcha, thanks. I have just two more questions. When in event of a t... (by rvrst)
|
by DroskiDro
Trouble W/ Floating Point Random Numbers
|
|
[4 replies] Last: I can't seem to understand why, especially why the interval is so wac... (by Catfish666)
|
by irishmts
Help With Pointer Arithmatic
|
|
[13 replies] Last: But on a more positive note, that works perfectly now, so cheers! N... (by Catfish666)
|
by Ariamn
average count
|
|
[2 replies] Last: Hi Ariamn, I updated your code and it should work fine: #include <io... (by Shadowcool39)
|
by Guzfraba
error C1075: end of file found before the left parenthesis '(' at ...
|
|
[4 replies] Last: pff...thanks. i am really tired,i thought that line 282 is the last li... (by Guzfraba)
|
by waspzero
Help me find errors
|
|
[3 replies] Last: thank you so much! (by waspzero)
|
by Kevin2341
Passing c-strings as pointers
|
|
[3 replies] Last: void getText(char *pText) // <- pText is a char* (a pointer) { cou... (by Disch)
|
Is it ok to mix cstrings and strings? |
|
[9 replies] Last: All of the above. Pointer arithmetic is extremely error prone, which ... (by Disch)
|
by bknick24
simple while loop help
|
|
[2 replies] Last: @Manga, you are correct that the math is suspicious, but the 9% intere... (by CplusplusAcolyte)
|
by bupeking2000
Command line arguments with make.
|
|
[no replies]
|
by dcradu
reading multiple text file, char
|
|
[3 replies] Last: thanks very much both of you :D (by dcradu)
|
by Dominic4774
This should work??
|
|
[1 reply] : the problem I think is with your while loops and line 23... remembe... (by Manga)
|
by Mayah
Outputting simple statistics based on an array
|
|
[6 replies] Last: You've been most helpful, giblit! I truly appreciate it! :) Thanks for... (by Mayah)
|
by enemy
strchr
|
|
[2 replies] Last: #include <iostream> #include <string> int main() { std::string f... (by cire)
|
by jnavafb
Need help creating a program that outputs and counts the vowels in a sentence.
|
|
[4 replies] Last: Ah sorry for some reason I was thinking that getilne appended the null... (by giblit)
|
by tang
how to change it??>Parking charge given is from 6am to 6pm. If after 6pm until 6am, per entry parking charges is RM 6.00.
|
|
[7 replies] Last: Suggestion 1 is explained here: http://www.cplusplus.com/forum/article... (by keskiverto)
|
by enemy
why is z not simply 30 here?
|
|
[5 replies] Last: but z is ment to be 30 then, It's not. You never set it to 30 (or ... (by Disch)
|