by DeathLeap
determining a length of a string inside a vector of strings
|
|
[2 replies] Last: size_t len; len = words .size(); Note that std::vector is not an ... (by AbstractionAnon)
|
by nj1995
Problem with Multiple File Compilation
|
|
[4 replies] Last: oh okay thank you! i did not know that, that was the problem. Thanks a... (by nj1995)
|
by cpluswut
Score the race
|
|
[1 reply] : how would I split each character out of the string and into an array?... (by Moschops)
|
by TicTacTiger
Deleting from an array
|
|
[2 replies] Last: Your problem is that when you delete the first letter, you're doing tw... (by AbstractionAnon)
|
by Yourking77
Help
|
|
[1 reply] : http://www.cplusplus.com/reference/istream/istream/getline/ (by cire)
|
by m0bb1n
How to go back to functions without explicitly addressing it
|
|
[1 reply] : Well, when the bye() function terminates, it will return you back to t... (by Ispil)
|
by TheGREAT
Error ')' Before string constant
|
|
[3 replies] Last: Are you possibly looking for something like this? #include <iostream... (by newatthis)
|
by josex
C++
|
|
[4 replies] Last: Thank you so much for your help. Dhayden, yes the calc is in a single ... (by josex)
|
by DrZoidberg
Algorithm ideas for this problem?
|
|
[no replies]
|
by oscClippers
Having trouble with Random Number Guessing Game
|
|
[9 replies] Last: I don't know if it's too late, but here is what I came up with. #in... (by newatthis)
|
by Yuno333
How to x.find(*any element from array*)
|
|
[3 replies] Last: std::find() is the droid you are looking for I see that you have... (by Duthomhas)
|
by Luisito07
find specific line in txt file.
|
|
[2 replies] Last: Since the date field is at the beginning of each line, you could read ... (by Chervil)
|
by vaynex
Comparing Values with Different Data types and getting the largest value
|
|
[8 replies] Last: Slightly different from Cervil's suggestion, I'd just maintain a varia... (by dhayden)
|
by reduxe
Mean, median and mode in arrays
|
|
[1 reply] : Please note that this is not a homework site. We won't do your homewor... (by keskiverto)
|
by Turbo82
[SOLVED]pugixml parsing
|
|
[1 reply] : got it :)). (by Turbo82)
|
by Jester87
replacing char in a string.
|
|
[1 reply] : #include <iostream> #include <stdlib.h> #include <string> using nam... (by Thomas1965)
|
by vc98
Array Problem
|
|
[6 replies] Last: Ok, just spotted the pesky semicolon on line 22 :+) (by TheIdeasMan)
|
by ChangCow
Anything unnecessary or able to be improved in this code?
|
|
[3 replies] Last: Thanks guys I'll try all of the suggestions, have a good one. (by ChangCow)
|
Convert to upper and back |
|
[14 replies] Last: No jib that is not what the program calls for sMav that is great for ... (by theotherguy8883)
|
by vaynex
data from file into array of struct
|
|
[6 replies] Last: Your code is mixing two different variables. One is an int, the other ... (by Chervil)
|