Standard Template Library (STL) – Introduction Tutorial

I have been programming in C++ since 2011. But till today, doubly linked lists, hash tables, pointers and the various searching/sorting algorithms on them have intimidated me. I always had to look at their syntax when I came back to C++ after

Read More

Templates and their Importance in C++

Template is a very powerful yet underused feature of C++. It should be used as much as possible. Let’s begin with a simple scenario. Let’s write a function to multiply 2 numbers in C++. [crayon-6280651009abc533372056/] Now, when we pass the below inputs

Read More