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

UART Interview Questions

In this article, I have tried to collect UART Interview questions that can be asked by your Interviewer. A UART is a chip for asynchronous serial communication. It takes bytes of data and transmits the individual bits in a sequential fashion with the help of a shift register. The shift register is the fundamental method […]

UART Interview Questions Read More »

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++: A Complete Guide for Beginners and Professionals

I believe you have come across the term “Undefined Behavior” (UB) in many programming books and blogs. However, many beginners and even some experienced developers struggle to fully understand what it actually means. If you are one of them, this blog post is for you. In this article, you will learn the concept of undefined

Undefined Behavior in C and C++: A Complete Guide for Beginners and Professionals Read More »