Search Results

1
vote

Is it Wise to Spend Cash on a C++ Book Keeping in View the Upcoming C++0x?

I'd echo the recommendation to get the Bjarne Stroustrup book "The C++ Programming Language (Third Edition and Special Edition)" ht …
0
votes

I need help about linker errors in c++

Have a read here: http://www.csee.umbc.edu/courses/undergraduate/341/misc/CommonErrors.shtml …
2
votes

Beginner Programmer - Which direction

I would put in a bid for learning C++. You get access to all the concepts that are important to understand from C (e.g. pointers) and also you get Object Orientated Programming and Template …
0
votes

Best Online C++ Refresher

This is my recommendation to anyone http://www.cplusplus.com/ Good tutorial and a good reference to the libraries etc. that you'll nee …
1
vote

Why should I avoid multiple inheritance in C++?

You shouldn't "avoid" multiple inheritance but you should be aware of problems that can arise such as the 'diamond problem' ( h …
3
votes

Generating UML from C++ code?

Here are a few options: Step-by-Step Guide to Reverse Engineering Code into UML Diagrams with Microsoft Visio 2000 - …
1
vote

Pass by Reference / Value in C++

My understanding of the words "If the function modifies that value, the modifications appear also within the scope of the calling function for both passing by value and by reference" is that they a …