by deputy
Print out array values in pairs
|
|
[5 replies] Last: againtry's code... #include<iostream> int main() { const int size=6... (by anup30)
|
by ChesterPlus
HTML file analysis
|
|
[5 replies] Last: Hello PacificAtlantic, Some little things to get you started: #incl... (by Handy Andy)
|
Compare cout and text files in strings |
|
[3 replies] Last: Surely you want the state for passOk reversed? false if not found and ... (by seeplus)
|
by ElleJay
Insert into array in sorted order
|
|
[4 replies] Last: when sorting data you need to have a "temp " variable that takes the c... (by learningcplusplus898)
|
by ElleJay
Storing information in separate Linked Lists
|
|
[6 replies] Last: Ok, I see you created a new Node, I tried it and it worked, thank you (by ElleJay)
|
by Icebrand
Triangle-type checker, what am I missing?
|
|
[5 replies] Last: In the triangleShape function, control will go past the end of the fun... (by Ganado)
|
by sirprize3
C++ Sudoku Solver - why is it that slow?
|
|
[10 replies] Last: FWIW, here is the original code modified with Dutch's suggestion to wo... (by dhayden)
|
Read integers from file with text in C++ |
|
[6 replies] Last: seeplus seems to be implying that there may be something wrong with my... (by dutch)
|
by jadams0904
While loops with sentinels.
|
|
[10 replies] Last: As soon as she gets back to me I will let you all know. She said she h... (by jadams0904)
|
by WoodyW00
How would I detect an invalid operator
|
|
[7 replies] Last: bool getVal( string input, double &result ) { string remainder; ... (by seeplus)
|
by Angela1998
std::function vs raw function pointer
|
|
[8 replies] Last: The lambda has a capture clause........... (by seeplus)
|
by CodeNovice01
.h file is giving me issues
|
|
[3 replies] Last: From when you designed this (and you did design before starting to cod... (by seeplus)
|
by navyassassin
Undefined reference to function that is defined
|
|
[4 replies] Last: void fillVector(vector< Valorant > list); should be: void fill... (by seeplus)
|
by Daerk
Any tips on how to solve this problem?
|
|
[1 reply] : Solution is in the link below: http://www.catb.org/esr/faqs/smart-ques... (by salem c)
|
by ElleJay
How do you access linked list stored in array?
|
|
[2 replies] Last: I just realized the error, I had it in my other code. I've fixed it no... (by ElleJay)
|
by emanresu
If you can't assign const char array, what is the other way?
|
|
[4 replies] Last: Thanks guys, I ended up doing other way And fixed that if-statement wi... (by emanresu)
|
by learner999
Summing the indices of repeating numbers
|
|
[7 replies] Last: #include <iostream> #include <vector> #include <numeric> using namesp... (by lastchance)
|
by DonnaPin
Error convert argument const char to char
|
|
[9 replies] Last: and others? Like which? It's a highly non-portable function (especi... (by lastchance)
|
by liam401
Repeating a function
|
|
[4 replies] Last: Why don't 'professors' teach C++ random number generator and not the C... (by seeplus)
|
by Radar
Help initialising vectors
|
|
[1 reply] : The constructor that accepts an initializer_list was instroduced in c+... (by coder777)
|