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 program to move all negative numbers to beginning and positive to end with constant extra space

In this blog post, we learn how to write a C program to move all negative numbers to the beginning and positive to end with constant extra space? So if an array of random numbers, push all the negative and positive numbers to the beginning and end of the array. We will also see how to […]

C program to move all negative numbers to beginning and positive to end with constant extra space Read More »

C Program to find length of longest consecutive elements sequence from given unsorted array of integers

In this blog post, we learn how to write a C program to find the length of the longest consecutive elements sequence from a given unsorted array of integers? So here we will write the C program to find the longest consecutive elements sequence in an unsorted array. We will also see how to display

C Program to find length of longest consecutive elements sequence from given unsorted array of integers Read More »