by Bank
Why is this program working?
|
|
[4 replies] Last: @Bank: the code is equivalent. you had return result(m+1, /**/); tha... (by ne555)
|
by varmy
The Initialization Problems in Program
|
|
[no replies]
|
by Kalcor
BST Implementation.. correct?
|
|
[2 replies] Last: Yea you right when I traced the recursion later on I got why both meth... (by Kalcor)
|
by jaxsmurph
Adding border
|
|
[6 replies] Last: For simple jobs it's often easier to hardcode the menu as follows; #... (by closed account 48T7M4Gy)
|
by Kalcor
A way to make infix > postfix with more than 1 char/digit
|
|
[2 replies] Last: @kbw Ah I'll try that, thanks! (by Kalcor)
|
by Kalcor
Parentheses checker logical error
|
|
[2 replies] Last: if(s == ')'){ if(checker.top_element(top) == '('... (by ne555)
|
Searching 2D array |
|
[6 replies] Last: #include <iostream> #include <fstream> #include <iomanip> #include <s... (by doublemirchi16)
|
by nemonemo
An imaginary lock mechanism.
|
|
[4 replies] Last: Thank you Cubbi, Seqlock is the answer. (by nemonemo)
|
by Kalcor
Is this a correct use of delete?
|
|
[5 replies] Last: Your delete is fine (with the above assumptions from @Peter87), but yo... (by doug4)
|
by jaxsmurph
Functions not working
|
|
[1 reply] : Return Value A value different from zero (i.e., true) if indeed c ... (by integralfx)
|
by l20G94n
Need some help with arrays and functions
|
|
[1 reply] : Please, always use codetags (the <> formatting button) when posting co... (by chicofeo)
|
by Kalcor
Linked list question
|
|
[3 replies] Last: `head' is a pointer, so you must be assigning a memory address. `temp'... (by ne555)
|
by Kalcor
XOR Swap algorithm weird error?
|
|
[3 replies] Last: xor swap is also slower usually. The cpu has to do the xor AND the sa... (by jonnin)
|
by Disch
(Templates) Variable args
|
|
[2 replies] Last: Perfect. Thanks JLBorges. Yes I know to use make_unique. I was just... (by Disch)
|
Strings in C++ |
|
[3 replies] Last: [quote=abhinav mathur]1. include <string> only 2. include <string.h> o... (by Enoizat)
|
by Kalcor
Is it possible to return an array?
|
|
[4 replies] Last: > Is it possible to create an array within a function and return it at... (by JLBorges)
|
by Kalcor
What does this expression mean
|
|
[3 replies] Last: Do you have Google? Perhaps wiki ? (by TheIdeasMan)
|
by carleye
Runtime error: Process terminated with status 255
|
|
[6 replies] Last: @ne555 yeah! it was because of array size being too small. (by carleye)
|
by napada99
Difficulty with Abstract class
|
|
[2 replies] Last: [quote=napada99]I'm getting a garbage value for Month m What do you p... (by Enoizat)
|
by RickAngel
Help solving Rate and Hours Problem
|
|
[5 replies] Last: Read the Arguments passed by value and by reference section http://w... (by integralfx)
|