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++ Keywords

This blog post will teach you about C++ keywords (reserved words in C++ programming). We will list out almost famous C++ keywords and their examples. Let’s first understand what C++ keyword is.   Keywords are predefined reserved identifiers that have special meanings. And because they are reserved by the language, these keywords are not available

C++ Keywords Read More »

Undefined Behavior in C and C++

I believe you have read the statement “Undefined Behaviour” or “UB” in many programming books and blogs. Many new programmers and newbies are not able to understand the meaning of this statement. If you are one of them then this blog post is for you because, in this blog post, you will learn the meaning

Undefined Behavior in C and C++ Read More »

Binary Search

In this tutorial, you will learn how binary search works. Also, you will learn how to write the program using the binary search algorithm. In this blog post, you will find working examples of Binary Search in C, and C++. Before implementing the code let’s first understand the binary search algorithm. Binary search is a

Binary Search Read More »