C - npalko/npalko.github.com GitHub Wiki

Had I said, for example, "C++ is a horrid mishmash of under-specified, overly-complex features piled on top of a brittle, dangerous memory model and I am thankful every day I no longer work in it for my own sanity", that would be bashing C++

  • Eric Lippert

boost::scoped_ptr

  • no overhead
  • assumes ownership
  • cannot be copied or assigned

boost::shared_ptr

  • overhead: reference counting

http://code.google.com/p/robin/

Not Immediately Obvious Guide to New C++ programers Copies. Copies of objects are tricky. Use Objects and Scope To Manage Resources.

Federation of Languages C C++ Templates Preprocessor Build system

pg 460 sales_item myobj(); sales_item myobj; sales_item myobj = sales_item();

http://stackoverflow.com/questions/3576616/a-basic-understanding-of-the-function-of-the-c-header-files

⚠️ **GitHub.com Fallback** ⚠️