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

ASCII Table

In this blog post, we have implemented an ASCII table (ASCII chart) that contains characters with their ASCII value in decimal, hex, octal and binary format.  Before implementing the ASCII table let’s first understand what ASCII code is. What is ASCII Code? ASCII is a character encoding standard for electronic communication. They represent text in […]

ASCII Table Read More »

strcpy in C

In this blog post, you will learn what is the strcpy() and how to use the strcpy() function in C to copy strings with the help of programming examples.   What is strcpy in C? The strcpy function copies the string pointed to by src (including the terminating null character) into the array pointed to

strcpy in C Read More »

memccpy in C

In this blog post, you will learn about the memccpy in C with the help of programming examples. The memccpy function copies characters from the object pointed to by src into the object pointed to by dest. The copies of characters are stopped after any of the next two conditions are satisfied: 1. The first

memccpy in C Read More »