by linish
classes and operators
|
|
[2 replies] Last: You do know about Gnu MP, right? No, I have not heard of it, wh... (by linish)
|
by riched158
exp with doubles anf floats
|
|
[5 replies] Last: http://www.cplusplus.com/reference/clibrary/cmath/exp/ (by Bazzy)
|
by ischuldt
adding vectors
|
|
[1 reply] : vector1.insert( vector1.end(), vector2.begin(), vector2.end() ); Se... (by moorecm)
|
by fafner
Client-server for n00bs
|
|
[3 replies] Last: Thanks! That's exactly what I'm looking for;) (by fafner)
|
by RyanCaywood
g++ linker problems
|
|
[9 replies] Last: Well, I knew better than to try to compile ConfigFile.cpp itself, but ... (by RyanCaywood)
|
by amiya068
What is the use of Static objects.
|
|
[1 reply] : A static object is one with global lifetime, but constrained scope. ... (by kbw)
|
by mcleano
Client-Server Design Question
|
|
[4 replies] Last: Fair enough. This will probably make you laugh somewhat but it was in ... (by mcleano)
|
by qwerty1989
Premature return from recursion stack
|
|
[7 replies] Last: jump to that adress and doing a ret, but you'd have to pay attention ... (by helios)
|
by nelsonyap48
class calling function that is declared outside main()/class
|
|
[1 reply] : You can call find() from any function, as long as find() is declared b... (by hamsterman)
|
using an inherited typedef? |
|
[12 replies] Last: I have to come back: in effect, where I have a line typedef HashItera... (by KarlisRepsons)
|
by branic729
Shutdown with timer
|
|
[5 replies] Last: Just making a small c++ project (just started with c++) called shutdow... (by branic729)
|
by DexterMorgan
Book on algorithms for programming practice in C++ (or Java or ML) ?
|
|
[6 replies] Last: hey Dexter, if you have "The Art of Computer Programming" as a soft-... (by abdallahijazi)
|
by Alan
math
|
|
[1 reply] : What if multiplication, division and order of operands did not exist?... (by helios)
|
by uj2n
Beginner's questions
|
|
[4 replies] Last: #1 There are other cross-platform GUI tool-kits you can try. FLTK an... (by Galik)
|
by karthick88
A doubt on basics -- memory allocation (1,2)
|
|
[24 replies] Last: Of course. (by helios)
|
by ayush20m
Wont accept value
|
|
[8 replies] Last: This is a better solution. This question has been asked and answered ... (by kempofighter)
|
by Null
ncurses & stringstream incompatibility
|
|
[8 replies] Last: Damn it! I clicked the big green "Download now" button on sourceforge ... (by Null)
|
by jbourne
How is scanf("%d",&x) faster than cin>>x?
|
|
[2 replies] Last: cin is also tied to cout, which imposes a further performance impact... (by kbw)
|
by alexdlaird
Casting to Enum Gets Negative Value
|
|
[8 replies] Last: My assembly looks similar to yours, where the assembler is always and... (by kempofighter)
|
by taperave86
Splitting namespace header and definition.
|
|
[6 replies] Last: If the functions are to be accessible to users of the class, then I'd ... (by jsmith)
|