by GunnDawg09
Lookin to get back into C++
|
|
[4 replies] Last: heh if I could get 2 small boxes on the screen with collision detectio... (by GunnDawg09)
|
by missty
c++ question: add line to text file but got a blank first line.
|
|
[4 replies] Last: thx for helping me... (by missty)
|
Outputting strings to files |
|
[2 replies] Last: I agree. Why are you using C output? And is getline part of the std na... (by chrisname)
|
by newdomingo
Binary Search Tree
|
|
[2 replies] Last: try returning a node from your search function. (by mspy2plus)
|
by vbraziel
showing the output of an integer as a 24 hour number
|
|
[2 replies] Last: the simplest solution is if ( x < 10 ) cout << '0'; cout << ... (by R0mai)
|
by rmoat
Visual C++ CLR / Win32
|
|
[5 replies] Last: Thanks for your replies! Yeah, I definitely don't want to use the CLR ... (by rmoat)
|
by NGen
Deleting Char Array Causes Windows Break-Point
|
|
[5 replies] Last: memory stomp. the array has to be strlen(value) + 1 bytes wide to a... (by jsmith)
|
by strashko
Problem with example of a book
|
|
[10 replies] Last: Bjarne's header does not seem very helpful... try this instead #... (by mspy2plus)
|
Beginner's Manual Advice |
|
[3 replies] Last: If you really need a book for a beginner: C++ all-in-one desk referen... (by mspy2plus)
|
by TheTufik
Behind dynamic memory allocation
|
|
[1 reply] : The heap works by obtaining large chunks of memory and handing out chu... (by kbw)
|
by soop505
Jukebox
|
|
[1 reply] : I think you should take a look at SDL and SDL_mixer. (by helios)
|
by Warrior2089
Pointers?
|
|
[6 replies] Last: ... except those optimised into registers. (by kbw)
|
by cppg2009
Q: Need to skeep emply lines in file [fgets]
|
|
[4 replies] Last: fgets() will put the newline of an empty line in the buffer, so testin... (by PanGalactic)
|
by kostka
return a pointer to a multidimensional array
|
|
[11 replies] Last: What overhead are you talking about with std::vector? My main bee... (by kostka)
|
by Pera3
template basics
|
|
[5 replies] Last: I see. I'll have to try it out in C#. Maybe it is similar. Thanks f... (by webJose)
|
hate to love |
|
[4 replies] Last: Of course there is no output. The user types in his/her/it? sentence a... (by Warrior2089)
|
by mpadams
strange behavior in binary i/o
|
|
[4 replies] Last: wow, thanks everyone! as usual, what was happening is simple and pred... (by mpadams)
|
by drtt1gg3r
getting struct member from vector list
|
|
[5 replies] Last: &boost::lambda::_1->*&gunType::name what does this process do "lit... (by drtt1gg3r)
|
by fercs
undefined reference
|
|
[5 replies] Last: The problem is that you have to instantiate the array somewhere (in a ... (by jsmith)
|
by benji00za
c++ libraries
|
|
[1 reply] : Open you compiler "include" directory and double click on .h file. On ... (by Null)
|