Posts by Mohammad Mustafa

Author Biographical Info: Coder|| Blogger || Speaker

Input Iterators in C++

By Mohammad Mustafa

In the case of various input operations in C++, we use input iterators. Each value is pointed by the iterator once and the iterator gets incremented. There are 5 main types of iter.... Read More

Passing and storing lambda function as callbacks in C++

By Mohammad Mustafa

Lambda functions are one of the most exciting features which are present in C++ programming (C++11). Lambda functions(also referred to as closures) are just like normal functions w.... Read More

Code Bloating in C++ with Examples

By Mohammad Mustafa

In this tutorial, we will be learning Code Bloating in C++ with some examples. Whenever a programmer has to write a code using C++, He/She has to ensure that the code is fast and e.... Read More