| c++ Programming Glossary: improveWhat is an undefined reference/unresolved external symbol error and how do I fix it? http://stackoverflow.com/questions/12573816/what-is-an-undefined-reference-unresolved-external-symbol-error-and-how-do-i-fix  undefined reference c faq unresolved external   share improve this question   Compiling a C program takes place in several.. 
 What are the rules about using an underscore in a C++ identifier? http://stackoverflow.com/questions/228783/what-are-the-rules-about-using-an-underscore-in-a-c-identifier  this allowed by the C standard  c standards c faq   share improve this question   The rules which did not change in C 11 Reserved.. 
 How to split a string in C++? http://stackoverflow.com/questions/236129/how-to-split-a-string-in-c  sub endl while iss   c split c faq stdstring   share improve this question   FWIW here's another way to extract tokens from.. 
 What can I use to profile C++ code in Linux? http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux  I use to pinpoint my slow code  c unix profiling   share improve this question   If your goal is to use a profiler use one of.. 
 What is The Rule of Three? http://stackoverflow.com/questions/4172722/what-is-the-rule-of-three  assignment operator c faq rule of three   share improve this question   Introduction C treats variables of user defined.. 
 Undefined Behavior and Sequence Points http://stackoverflow.com/questions/4176328/undefined-behavior-and-sequence-points   c c undefined behavior c faq sequence points   share improve this question   Disclaimer Okay. This answer is a bit long... 
 Operator overloading http://stackoverflow.com/questions/4421706/operator-overloading  the idea.   c operators operator overloading c faq   share improve this question   Common operators to overload Most of the work.. 
 Why can templates only be implemented in the header file? http://stackoverflow.com/questions/495021/why-can-templates-only-be-implemented-in-the-header-file  inline functions. Why is this  c templates c faq   share improve this question   Because when instantiating a template the compiler.. 
 Why is iostream::eof inside a loop condition considered wrong? http://stackoverflow.com/questions/5605125/why-is-iostreameof-inside-a-loop-condition-considered-wrong  I often use with no problems  c iostream c faq   share improve this question   Because iostream eof will only be set after.. 
 Where and why do I have to put the “template” and “typename” keywords? http://stackoverflow.com/questions/610245/where-and-why-do-i-have-to-put-the-template-and-typename-keywords  size.  c templates c 11 c faq dependent name   share improve this question   Introduction This answer tries to focus on the.. 
 Is there any way to force the WorkingSet of a process to be 1GB in C++? http://stackoverflow.com/questions/12228321/is-there-any-way-to-force-the-workingset-of-a-process-to-be-1gb-in-c  is writing bad managed code not the GC slowing you down. Improve the big O performance of your algorithms offload expensive work.. 
 Understanding return value optimization and returning temporaries - C++ http://stackoverflow.com/questions/1394229/understanding-return-value-optimization-and-returning-temporaries-c  20 of Scott Meyers book More Effective C . 35 New Ways to Improve Your Programs and Designs . Here is a good article about NRVO.. 
 When or where was the term “Most vexing parse” coined? http://stackoverflow.com/questions/1610551/when-or-where-was-the-term-most-vexing-parse-coined    Scott Meyers book Effective STL 50 Specific Ways to Improve Your Use of the Standard Template Library of 2001 might be first.. 
 When should functions be member functions? http://stackoverflow.com/questions/1638394/when-should-functions-be-member-functions  often improve encapsulation How Non Member Functions Improve Encapsulation Herb Sutter and Jim Hyslop also talk about this.. 
 Comprehensive tutorial for beginners on how to write Windows GUI programs http://stackoverflow.com/questions/3726642/comprehensive-tutorial-for-beginners-on-how-to-write-windows-gui-programs  like text size and background color to web pages. Step 3. Improve your web pages with PHP. PHP Hypertext Preprocessor reminds.. 
 Operator overloading : member function vs. non-member function? http://stackoverflow.com/questions/4622330/operator-overloading-member-function-vs-non-member-function 
 Why would one replace default new and delete operators? http://stackoverflow.com/questions/7149461/why-would-one-replace-default-new-and-delete-operators  helping in providing a good diagnostic information. To Improve Efficiency speed memory The new and delete operators work reasonably.. 
 |