by infinite1212
How do I create a frequency table of strings?
|
|
[5 replies] Last: The while loop puts strings s into the map. If s isn't yet in the ma... (by lastchance)
|
by ITOYEN2049
While Loop Trouble Help Needed
|
|
[1 reply] : Line 16 looks like its from another program. It makes no sense here. D... (by tpb)
|
Printing arrays with pointers |
|
[1 reply] : #include <iostream> #include <iomanip> using namespace std; int mai... (by tpb)
|
by VinCenT98
Generate symbol randomly
|
|
[2 replies] Last: You can use C++'s random library. #include <iostream> #include <rand... (by tpb)
|
by jen400
linear search problem
|
|
[1 reply] : Your algorithm is flawed. The maximum and minimum numbers have nothing... (by tpb)
|
easy answer? on Heaps |
|
[1 reply] : Drawing the heap as-if it was a binary tree helps illustrate the heap ... (by mbozzi)
|
by abc456
How to fix code that counts letters in words?
|
|
[6 replies] Last: thanks everyone for your help i got it working :) (by abc456)
|
by BambiWithPMS
Extraction operator overloading confusion!
|
|
[4 replies] Last: const means that it's an object that cannot be modified after being in... (by Ganado)
|
by ITOYEN2049
I'm Having Trouble Multiplying Matrices, Need Help
|
|
[2 replies] Last: Your loop on lines 14--16 assumes that the A has 3 columns and that t... (by ITOYEN2049)
|
by Vendal
Function Overloading
|
|
[9 replies] Last: Making mistakes, even simple ones such as yours, is how we learn and i... (by closed account E0p9LyTq)
|
by ElleJay
How to extract whole words from char array
|
|
[8 replies] Last: #include <iostream> #include <stack> #include <queue> #include <cstri... (by lastchance)
|
by herrwaa96
c++ function
|
|
[1 reply] : this is my question::) There's no question there. (by Repeater)
|
by One Pea
Unexpected Output
|
|
[8 replies] Last: @chipp, Your particular compiler implementation seems to require the ... (by closed account E0p9LyTq)
|
by Student555
Understanding vector implementation
|
|
[2 replies] Last: @lastchance, thanks for the explanation (by Student555)
|
by Stauricus
priority_queue of objects
|
|
[2 replies] Last: thank you, i searched why it should be const, and now i understand :) (by Stauricus)
|
how can i delay my console program when executing? |
|
[4 replies] Last: To 1. if you use Windows and can't use C++11 then Sleep is an option -... (by Thomas1965)
|
by Dero8080
I just want to understand
|
|
[2 replies] Last: Hello Andy, Thanks for the response. Let me try if I get stuck I wil... (by Dero8080)
|
by DigiLei
c++ program for successive adding
|
|
[1 reply] : int sum = 0; for (int n = 1; sum < 100; n++) sum += n; ... (by mbozzi)
|