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

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 »

Becoming an Azure Certified Expert: Tips, Tricks, and Study Resources

If you are looking for a lucrative career with excellent scope for growth and development, becoming an Azure-certified expert will not disappoint you. Microsoft Azure is one of the leading cloud computing services, and Microsoft certifications are well-respected in the industry. Getting a Microsoft Azure certification can not only help you advance your career in

Becoming an Azure Certified Expert: Tips, Tricks, and Study Resources Read More »

Array of Strings in C

In this blog post, I will try to teach what is an array of strings in C with the help of example code. Also, I will also explain some invalid operations that you should avoid before using an array of strings.   What is an Array of Strings in C? As you know an array

Array of Strings in C Read More »

C++ Identifiers

This blog post will teach you about C++ Identifiers and their naming rules. I will try to explain the identifier in C++ with an example code. After reading this blog post, I believe you will be able to identify invalid and valid identifiers in C++. What is an identifier in C++? An identifier is a

C++ Identifiers Read More »

Introduction of C++ Data Types

In this blog post, we will learn about C++ data types with the help of examples. But before the classification first let’s understand what is data type. A data type is a classification of data that tells the compiler or interpreter how the programmer intends to use the data. At a high level, we can

Introduction of C++ Data Types Read More »