by az1234
swapping characters in string array
|
|
[8 replies] Last: Hello az1234, PLEASE ALWAYS USE CODE TAGS (the <> formatting button... (by Handy Andy)
|
by AL88
How can I make the if else shortcut compile?
|
|
[6 replies] Last: Are you sure your problem is solved? It might compile but it's far fr... (by coder777)
|
by alirezafz
counting number of occurrences of digit d
|
|
[3 replies] Last: #include <iostream> #include <algorithm> using namespace std; //===... (by lastchance)
|
by warku
passing variable between two objects
|
|
[13 replies] Last: For example: [quote=helios]Every time you add global state you make it... (by keskiverto)
|
by mck99
Accessing elements of const pass by reference std::list
|
|
[2 replies] Last: When an object is pass as const reference it means that you can use fu... (by coder777)
|
by Tduck
How to declare a class template?
|
|
[1 reply] : If you want to define a function of a template class outside that clas... (by coder777)
|
by noshkren
using sstream
|
|
[1 reply] : Hello noshkren, It would be a good idea to edit your OP and remove th... (by Handy Andy)
|
by anthony2011
solve this and post it in comment
|
|
[4 replies] Last: anthony2011 , I'm willing to give you the benefit of doubt. I've ed... (by closed account 1vRz3TCk)
|
by aidan118
Can't multiply two 5x5 matrices
|
|
[3 replies] Last: You have a == instead of = for your assignment to array3. And you prob... (by tpb)
|
by nandoestudo
I need help here
|
|
[6 replies] Last: Or is + if you dont % though. 0+0 = 0 0+1 = 1 1+0 = 1 1+1 = 2/ still '... (by jonnin)
|
by AL88
How do I get the List constructor to work for line 47?
|
|
[19 replies] Last: There are multiple error (at least three) so the best way to approach ... (by Peter87)
|
by Unspoken
Can't pass std::function as a parameter because there is no suitable conversion.
|
|
[13 replies] Last: So the idea is to wrap capturing lambda in capturless one :) You can... (by Peter87)
|
by mojoe88
Beginner of beginners; lost on how to complete this assignment
|
|
[6 replies] Last: your professor is forcing you to do something the wrong way, which ref... (by jonnin)
|
by ineedhelp2
loop help
|
|
[2 replies] Last: Hello ineedhelp2, PLEASE ALWAYS USE CODE TAGS (the <> formatting butt... (by Handy Andy)
|
can't understand the question on my assignment |
|
[2 replies] Last: Well, since WAV PCM is uncompressed, it actually isn't too hard to jus... (by Ganado)
|
Code for finding the freqency of Chars in a text file |
|
[2 replies] Last: Line 19 is of course dangerous. If a character doesn't fit in that pat... (by coder777)
|
by Song Tung
Finding a way to count the number of comparison in C++ STL sort
|
|
[3 replies] Last: Thanks for helping me (by Song Tung)
|
by nwb1027
Using CreateFile Function
|
|
[1 reply] : I suggest you use the C++ standard library functions. The windows syst... (by tpb)
|
by tubeethet
how to call 2d arrays with arguments
|
|
[8 replies] Last: Thanks. I hope i made the correct adjustments. (by tubeethet)
|
by ICantC
std::getline valid input check doesn't work if false is ever returned
|
|
[7 replies] Last: Just std::count would work: bool guess_valid(std::string guess) { ... (by mbozzi)
|