How to use Lambda functions in C++

How to use Lambda functions in C++

I have heard of Lambda functions for a while but never had the courage to use them. Well, last week I was forced to use them. They are actually not that bad to learn. I want to give you a brief overview on how to use them.

Declaring variables with "auto" in C++

Declaring variables with "auto" in C++

One of the new features in C++ 11 is the automatic type deduction: auto. With auto you can declare a variable or an object without specifying its type.

Prefer pre-increment to post-increment

Avoid wasteful overhead on user-defined types by using pre-increment rather than post-increment.

How to remove vector elements in a loop?

How to remove vector elements in a loop?

Have you ever wondered how you could delete vector elements in C++ in a loop? This is a way to do it... 

C++ tip 16: References are Aliases, not Pointers

C++ tip 16: References are Aliases, not Pointers

Don't confuse references for pointers. References are another name for an object which currently exist. They are not Pointers.