by mIXpRo
c++ memory allocation
|
|
[4 replies] Last: You also have the allocator class although I'm not sure if that's what... (by tummychow)
|
by Infernochaos
Using 2 variable as conditions?
|
|
[6 replies] Last: @PanGalactic : THX!! That's exactly what i needed and also thx to all... (by Infernochaos)
|
by paul23
functors, and changin them "on the run"
|
|
[3 replies] Last: Close but don't forget the reference/pointer part--it is the key. H... (by moorecm)
|
by haraz471
matrix looping//
|
|
[1 reply] : Use two nested for (by Bazzy)
|
by jonnyw
How to split a byte into bits so you can check whether bit X is 1 or 0
|
|
[1 reply] : unsigned char byte = something; bool fiftDigitIsOne = byte & 16 // 1... (by Bazzy)
|
by jrohde
Thread Priority Question
|
|
[4 replies] Last: 1. It does matter what priority your thread has. Does it? When all ... (by ktoto256)
|
by Nikhar
Suggest a good tutorial for graphs in c++
|
|
[1 reply] : Oh, btw I'm using XP and the compiler is Code::blocks. (by Nikhar)
|
by n4nature
reserve() in vectors
|
|
[3 replies] Last: Constructors are not called. (by helios)
|
by rey
source code assistance pls
|
|
[2 replies] Last: ok noted. (by rey)
|
by rijaalu
print empty screen when i compile.
|
|
[2 replies] Last: As far as I can tell the code is working just fine, you're creating a ... (by Warnis)
|
by yag
Which C++ compiler to use?
|
|
[13 replies] Last: Well if you are really serious try actually buying a piece of software... (by kevinkjt2000)
|
by phaethon
PCI Express I/O
|
|
[2 replies] Last: I'm not actually a C++ newbie, just a newbie to this forum :-P My exp... (by phaethon)
|
by Leomond
Creazy Behavior
|
|
[3 replies] Last: Just blind luck, I guess. Everything would work out fine if the next ... (by moorecm)
|
by gipark
memory problem on 3D array - segmentation fault
|
|
[2 replies] Last: Dynamically allocate the array. Depending upon the OS you'll have com... (by iharrold)
|
by Bazzy
Odd Constructor Syntax
|
|
[4 replies] Last: I like playing with things ( until I eventually break them... ) So I'... (by Bazzy)
|
reading from ports. |
|
[1 reply] : Computers communicate with external devices (printer, keyboard, intern... (by Duthomhas)
|
by slavik262
conveting jpeg in memory buffer to bitmap
|
|
[1 reply] : Hello slavik262, When working with webcams a very good library... (by Leomond)
|
by billinares
.lib & .a extensions
|
|
[1 reply] : The .a is almost certainly a static library. It's a Unix convention. ... (by kbw)
|
TinyXML |
|
[5 replies] Last: Look into boost::spirit. I'm pretty sure there is an example program ... (by moorecm)
|
by sebas
problems with calloc
|
|
[2 replies] Last: Thanks jsmith! Now I see the point. (by sebas)
|