Microcontroller Embedded C Programming Lecture 117| Looping in ‘C’
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…
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(<<)…
Bitwise right shift operator Bitwise right shift operator ( >>) ">>" is a symbol you use for the right shift operator. This operator takes two operands. …