Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Implement and test the following functionalities through C code fragments. ) Write a C code fragment to check a bit value. Declare three character
1. Implement and test the following functionalities through C code fragments. ) Write a C code fragment to check a bit value. Declare three character type variables chl, ch2 and mask with initial values of 0x34 and 0x20 for chl and mask, respectively. C code should set character type variable ch2 to 1 if the bit 5 in mask is 1, otherwise 0. Note that bits in a byte are numbered from 0 (lsb) to 7 (msb). b) Write a C code fragment to set a bit value. Declare two character type variables chl and mask with initial value of 0x34 for chl. C code should set bit 7 in variable chl to 1 using mask without changing any other bit values in chl c) Write a C code fragment to clear a bit value. Declare two character type variables chl and mask with initial value of 0x34 for chl. C code should clear bit 3 in variable chl to 0 using mask without changing any other bit values in chl d) Write a C code fragment to toggle a bit value. Declare two character type variables chl and mask with initial value of 0x34 for chl. C code should toggle bit 4 in variable chl using mask without changing any other bit values in chl
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started