string::substr tutorial needs range added |
|
[3 replies] Last: This can't match @JLBorges', which is superbly efficient. However, her... (by lastchance)
|
by jjordan33
scope of double nested for loop
|
|
[5 replies] Last: Consider me well schooled! =) Turns out, my intended question was bei... (by jjordan33)
|
by Apollo28
I need HELP with C++ and Arduino
|
|
[1 reply] : Which OS/Compiler are you running on the host machine. The one with th... (by salem c)
|
by jjordan33
Trying to figure out rand()
|
|
[3 replies] Last: If you're just printing a number, you don't need to convert it to a st... (by Ganado)
|
by mcgrim8
prime numbers (1,2)
|
|
[22 replies] Last: Don't sweat it... the best way to check isprime() for small (meaning u... (by jonnin)
|
by KindEquation
Comparing Values from external file
|
|
[5 replies] Last: it seems likely. perhaps something like getline from file (getline ... (by jonnin)
|
by mcclit
Storing multiple input inside a variable with out an array or vector.
|
|
[6 replies] Last: Don't forget to set firstTime to true. You can also use constructor t... (by Zaap)
|
by annw3y
c++ replace elements in linked list
|
|
[1 reply] : template <typename Item> void replace_first_by_last( std::forward_li... (by nuderobmonkey)
|
by annw3y
c++
|
|
[3 replies] Last: You've gotten your percentages. I assume that the "drawPath" function... (by zapshe)
|
by advancedip
Fastest way to read data into an vector?
|
|
[8 replies] Last: As others have already pointed out, there's a lot to consider with suc... (by Niccolo)
|
by pwnsamp
Add characters to a loop: C++
|
|
[2 replies] Last: Thank you. (by pwnsamp)
|
by SparkXV
Can anybody suggest the solution in O(n)?
|
|
[9 replies] Last: It seems I misread the 'append' part... Sorry. :-( (by Duthomhas)
|
by pwnsamp
For loop question: C++
|
|
[6 replies] Last: I meant XOR, and thanks, this solves it. (by pwnsamp)
|
by DarkParadox
derived classes
|
|
[1 reply] : A derived class = subclass = child class, in OOP. See also: https://ww... (by Ganado)
|
by medosz
While statement, two largest number
|
|
[5 replies] Last: #include <iostream> #include <set> using namespace std; int main() {... (by anup30)
|
by DarkParadox
Other data types
|
|
[7 replies] Last: Also use static to prevent the data from being created/deleted on ev... (by jonnin)
|
Question |
|
[3 replies] Last: Thanks Zaap, Salem c, everybody (by Beginner of C)
|
help much needed on TEMP assingment (ANY FEEDBACK IS GOOD FEEDBACK) |
|
[5 replies] Last: // The assignments wonky anyways just throw this at the teacher, sti... (by Shibitto)
|
by Xanadu4ever
The usual overloaded "<<" conundrum...
|
|
[14 replies] Last: Ganado is correct! The way the problem was worded, I was forced to us... (by Xanadu4ever)
|
by jasper hall
Structure of array
|
|
[6 replies] Last: @Zaap: int n; cin>>n; Data f ; // this is not legal C++ The f has ... (by keskiverto)
|