Microcontroller Embedded C Programming Lecture 118| while loop
while loop While loop in C Looping is a way of executing a certain set of statements again and again until a certain condition is met. That…
while loop While loop in C Looping is a way of executing a certain set of statements again and again until a certain condition is met. That…
Loops in C Loops in C First, let's understand why exactly we need looping. Take a look at the below program to print numbers from 1…
Bit Extraction In this article, let's understand bit extraction. Let's consider this problem statement. Extract bit positions from 9th to 14th [14:9]in a given data and save…
LED on exercise using bitwise shift operators In this article, let's modify the LED_on exercise using bitwise shift operators. Let's modify these below codes by using bitwise…
Applicability of bitwise shift operators Applicability of bitwise shift operations Bitwise shift operations offer a powerful toolset for manipulating data bits, particularly when combined with other bitwise…
Bitwise left shift operator In the previous post, you understood about the right shift operator. Now let's understand the left shift operator. Bitwise left shift operator(<<)…