by ebba
Recursion- counting numbers- homework
|
|
[2 replies] Last: the problem is each time digits gets called it sets count to a garbage... (by adam2016)
|
by cash
Convert to C++
|
|
[no replies]
|
by fauveboy
Comparing string content?
|
|
[3 replies] Last: Try going through it mentally on a short string, say "abc". a is index... (by Ganado)
|
by ScottyYDg
Error With Double Definitions Resulting from a Struct
|
|
[1 reply] : You shall not define variables within headers. If global variables are... (by coder777)
|
by Amiplus
Accessing class member variables from Main?
|
|
[3 replies] Last: whatever you're trying to do in main() with each element of that priva... (by John87Connor)
|
by mickeraiello
Unhandled execption error!
|
|
[1 reply] : Nevermind, i found the error. I needed this line of code at the bottom... (by mickeraiello)
|
OOP: Is this polymorphism? |
|
[7 replies] Last: @keskiverto thanks for the effort. lm really understand every part of ... (by vincentthorpe)
|
by Bopaki
I have been battling with this project since from Monday. I do not know why I get these 5 errors
|
|
[2 replies] Last: here it is #ifndef LINKEDLIST_H #define LINKEDLIST_H #include<iostre... (by Bopaki)
|
by cash
Convert to C++
|
|
[1 reply] : Is it Python? Before doing any work, have you already tested if it wok... (by Enoizat)
|
by George1993
Skipping an input field
|
|
[1 reply] : getline allows you only to read strings and nothing else. getline(ci... (by Thomas1965)
|
by PhysicsIsFun
2D array of vectors
|
|
[16 replies] Last: there are 2 ways to implement NxN matrices: 1. you use a container th... (by John87Connor)
|
Help understanding operator overloading? |
|
[1 reply] : Operator overloading is not much different from regular function overl... (by Peter87)
|
Calling function in main() |
|
[2 replies] Last: How do I pass the pointer of the array if it isn't defined or declare... (by Chervil)
|
by Shishykish
How can I enter data into a struct after I pass by ref to a function?
|
|
[4 replies] Last: Glad it works. Indeed, raw arrays are an exception to what might be in... (by Ganado)
|
by SoCalAsian
Combat Between 2 Characters using Classes
|
|
[1 reply] : your character class (the base class?) should have a value for current... (by jonnin)
|
by sr2cute702
Broken code for arrays
|
|
[11 replies] Last: Hello sr2cute702, This is your code with comments. I will not say tha... (by Handy Andy)
|
by enzo dino
Search value in a map with user input
|
|
[1 reply] : replace const char* with std::string as the key-value-type in the map<... (by John87Connor)
|
by queen13
i need help again :)))
|
|
[2 replies] Last: Hello queen13, This should give yo an idea of what your program is do... (by Handy Andy)
|
by nickhere
c++ coding killing me to much to understand
|
|
[4 replies] Last: sorry i meant just a string "110111101110011010110111011001" of 31 ch... (by nickhere)
|
by meegsees
Longest Matched Substring confusion / clarification
|
|
[2 replies] Last: @meegsees, You can do it recursively. Consider just the forward direc... (by lastchance)
|