by Shervan360
Problem with stod function in C++
|
|
[2 replies] Last: after convert, s is not the same of d True. As expected. Round-trip... (by seeplus)
|
by Rakib771
Operator overloading error for complex data
|
|
[15 replies] Last: @lastchance, could be. I'll try that later. Thank you everyone for yo... (by Rakib771)
|
Is there any way to add functions to std? |
|
[2 replies] Last: The standard library implementation does this: namespace std { void t... (by mbozzi)
|
by impetus
file search
|
|
[3 replies] Last: I would be tempted to say to read one letter at a time backwards into ... (by jonnin)
|
by Rakib771
Error with multiple template in operator overloading
|
|
[5 replies] Last: We can use an expression template to hold the result of the + expressi... (by JLBorges)
|
how would i match get a word only if it is between 2 numbers using regex |
|
[2 replies] Last: @dizzyDon only works for the first word, inputs such as 123hello123he... (by codinglexernewbie)
|
Simple login program will read from file but won't write to it. |
|
[2 replies] Last: This will work better, thank you for the correction. (by pizzafreak1991)
|
Class Will Not Run |
|
[14 replies] Last: ... furthermore, that code does not "test" class Piano. It is closer t... (by keskiverto)
|
by impetus
system with variable
|
|
[13 replies] Last: > I don't know how to convert linux commands to C++ functions. https:/... (by salem c)
|
by Archino
Breaking down this class
|
|
[13 replies] Last: Actually there are several problems: /** * Returns the element of the... (by coder777)
|
by Shervan360
What is the problem with 2d array in C++ code?
|
|
[4 replies] Last: https://stackoverflow.com/questions/936687/how-do-i-declare-a-2d-array... (by againtry)
|
by hypervoid
genericity
|
|
[5 replies] Last: a constructor does not create more objects. if it is not in the code,... (by jonnin)
|
by janac
Incrementing iterator using an integer
|
|
[9 replies] Last: Don't forget std::next() which can take a number of element positions ... (by seeplus)
|
by janac
Passing (?)constant iterators to function
|
|
[3 replies] Last: > are they constant references? Or is it that what they're pointing to... (by ne555)
|
by JohnCage
Help: Invalid conversion error, MINGW
|
|
[2 replies] Last: Hi, Thank you much. I try to compile it with MINGW. Let's see... (by JohnCage)
|
by crazybird710
Establishing command keywords in an interpreter in C++
|
|
[10 replies] Last: Are you going to do lexical analysis to generate tokens and then synta... (by seeplus)
|
by Mif
How to modify numbers in file "C"
|
|
[8 replies] Last: I think I may have a mistake.. at the end of every line I forgot I don... (by Mif)
|
by seal2002
Print one line to multiple lines with \n or space or fixed length
|
|
[6 replies] Last: Thank you, guys. Those solutions work expected and perfect. (by seal2002)
|
by s021623
Command line about descending numbers using input numbers
|
|
[7 replies] Last: Oh. It's supposed to use command-line arguments for the program. Well ... (by seeplus)
|
by LucasRex
Form expression to tree printer
|
|
[5 replies] Last: I guess it's just as easy to do it from the postfix form. #include <... (by DizzyDon)
|