Author name: Amlendra

I am an embedded c software engineer and a corporate trainer, currently, I am working as senior software engineer in a largest Software consulting company . I have working experience of different microcontrollers (stm32, LPC, PIC AVR and 8051), drivers (USB and virtual com-port), POS device (VeriFone) and payment gateway (global and first data).

Range-based for loop in C++

In this blog post, I will explain the range-based for loop with the help of example code. The range-based for loop is introduced in C++11. It executes a for loop over a range and is more readable equivalent to the traditional for loop.  See the below syntax for the range-based for loop. Syntax: for ( […]

Range-based for loop in C++ Read More »

C++ Vectors

In this blog post, you will learn C++ vectors with the help of programming examples. This article will be long because I will try to cover most of the important points related to vectors. So hopefully you will love this ultimate Guide to C++ Vector. So let’s start this article with this question what vectors

C++ Vectors Read More »