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).

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 »

Templates in C++

In this blog post, you will learn about templates in C++ with the help of programming examples. Templates are powerful features of C++ that allow us to write generic programs. It allows us to define a family of classes, functions, or variables, an alias for a family of types, or a concept. That means as a

Templates in C++ Read More »

Scoped vs unscoped enum in C++

An enumeration is a distinct type (user-defined type) with named constants that are known as enumerators. The name of the enumeration becomes an enum name within its scope. In C++, the enumeration type is declared with an enum key. These enum keys can be only an enum or enum class or enum struct. The enum

Scoped vs unscoped enum in C++ Read More »