Permission denied |
|
[2 replies] Last: that was the mistake... thanks! (by rabidmachine9)
|
by Zachary
"break" command...where does it break to?
|
|
[4 replies] Last: Disch -- No problem -- thanks for the clarification! Also, I think... (by Zachary)
|
by StretchNutzz
Question on counting nonblank characters
|
|
[5 replies] Last: Yes, it can be done in one line of code total using count_if and boost... (by jsmith)
|
by ltrane2003
Pass-by-reference code not giving the correct answers
|
|
[4 replies] Last: maybe try if( (a+b+c+d+e+f) >0 ) (by awasteoflife)
|
by Fallen03
Using I/O streams.
|
|
[5 replies] Last: Oops sorry. You have to have sname.c_str(). I forgot the parenthese... (by eker676)
|
by fanatical
Array bug? Explanation for what happens?
|
|
[8 replies] Last: You are right. However, for simplicity's sake, if it does not make ... (by jsmith)
|
Question about object pool design pattern |
|
[1 reply] : I think it is because in C++, all of the containers allow you to write... (by jsmith)
|
by pamcor
solving C++ problem
|
|
[2 replies] Last: First of all this is not a hard problem. Maybe a tad confusing but.. ... (by eker676)
|
by Harlequin
time.h
|
|
[1 reply] : time( 0 ) returns the number of seconds elapsed since some (fixed) poi... (by jsmith)
|
by Harlequin
returning a matrix from a function
|
|
[4 replies] Last: The same as any other type // pseudo code some-return-type-here... (by jsmith)
|
by Harlequin
header files............?
|
|
[6 replies] Last: Try wikipedia: http://en.wikipedia.org/wiki/Header_file (by Bazzy)
|
by bangura87
error message: expected initializer before 'do'
|
|
[1 reply] : You forgot a semicolon at line 9 The brace at line 40 should be at li... (by Bazzy)
|
by ktheq
class redefinition error
|
|
[6 replies] Last: Thanks again for your quick response. I was up all night trying to... (by ktheq)
|
by reyjunior
how to get numbers in order
|
|
[5 replies] Last: If you want to become familiar with if() statements, fine. However if... (by jsmith)
|
by ktheq
Understanding constructors to define a class with 3 data members
|
|
[5 replies] Last: yw. it looks from your class declaration that you are on the right tr... (by jsmith)
|
by user name
Calling class destructor if program killed
|
|
[3 replies] Last: You could try testing it by writing to a file inside a dummy class des... (by firedraco)
|
by efnx
maps
|
|
[9 replies] Last: You are right; it is likely that A b = mymap ; will call the copy cons... (by jsmith)
|
by PickleMan
<myprogram> has encountered a problem and needs to close. Why?
|
|
[6 replies] Last: Aaarrrggghh! I'm used to so many different languages! :( Thanks! (by PickleMan)
|
by luckyvictor
Difference between these two funciton
|
|
[2 replies] Last: yah, and IMHO a function named "get-something" performs a read-only op... (by jsmith)
|
by luckyvictor
What is the quickest way to search an item in a link list?
|
|
[1 reply] : Linearly. There's no other option. (by jsmith)
|