by jankieone
Versioning DLLs
|
|
[4 replies] Last: hi,the better thing is to download visual c++2005 . i have it and whe... (by ARWA)
|
by jrohde
Naming convention of standard C functions/types
|
|
[4 replies] Last: The reason standard C library names are so short is that older version... (by Duthomhas)
|
by alexatcpp
stdint.h in MSVS
|
|
[2 replies] Last: Depending on what version of VS you're using, you'll find that __int8,... (by kbw)
|
by alexatcpp
dereference a pointer to a template classes operator
|
|
[3 replies] Last: Hi, it works, thank you! sorry for the late answer.... Alex (by alexatcpp)
|
by CrimsonAngel
installing packets
|
|
[2 replies] Last: thanks smith (by CrimsonAngel)
|
by Nobun
Questions about overloading operators
|
|
[5 replies] Last: My bad. It's an old habit from my C days. If you have multiple decla... (by kbw)
|
by outsid3r
Template error...
|
|
[2 replies] Last: Thank you very much. So, typename keyword ensures that C<T>::S is a ty... (by outsid3r)
|
by n4nature
hashmap vs hashtable
|
|
[1 reply] : http://lmgtfy.com/?q=hashmap+vs+hashtable (by CrimsonAngel)
|
by radeberger
Socket problem
|
|
[1 reply] : Maybe it doesn't hangs? I mean it is situated in state of listening? ... (by Denis)
|
by mjordan1
Very Simple, Very IMP...
|
|
[3 replies] Last: [quote=wikipedia]...in which case it is called a class method or a ... (by closed account z05DSL3A)
|
by babe20042004
How can I make this program work? Problem with arrays
|
|
[2 replies] Last: hmm... I'm not a real programmer (a lot of people can help you better ... (by Nobun)
|
by Mihulik
New operator overloading issue
|
|
[2 replies] Last: I am trying to implement my GC (http://iwi.eldoc.ub.rug.nl/root/2007/S... (by Mihulik)
|
by jhapk
static variable inside a function
|
|
[6 replies] Last: local static variables are initialized on first use. If the function ... (by Disch)
|
by AYT
Question on reading binary data
|
|
[5 replies] Last: TC++PL says that chars are almost universally 8 bits long. From what I... (by helios)
|
by paul23
Problem with heaps (removal of xth elem)
|
|
[1 reply] : No need to reinvent the wheel on this one. It pretty much sounds like... (by Disch)
|
by n4nature
Binary vs unary function predicate
|
|
[1 reply] : 1. No, sort requires random access iterators and uses those to its ful... (by PanGalactic)
|
by saminny
sorting algos
|
|
[10 replies] Last: I have found stable sorting useful for testing data manipulation progr... (by PanGalactic)
|
by matty3269
Member Class with Constructor Parameters
|
|
[4 replies] Last: They make possible to construct/destruct B only within the class itsel... (by Bazzy)
|
by MyRedz
need guide on my ds c++ link list project
|
|
[1 reply] : Try starting by coding what the linked list class will look like. (by Zhuge)
|
by sys7em
Implementing Binary tree using a vector
|
|
[1 reply] : For node i>=0, its left child is i*2+1, and its right child is i*2+2. (by helios)
|