Question: Write a C function to set a bit in the binary representation of an unsigned integer number of four bytes (bits counting from right

Write a C function to set a bit in the binary representation of an unsigned integer number of four bytes (bits counting from right to left as bit0, bitl, bit2, ..., bit31), and display both the number and the number after bit set in hexadecimal format. The function prototype is as follows, void set_a_bit (unsinged int n, unsigned int s); /* set bit s of number n. */ For example, a call of the function in the program, set a bit (260, 3); will output set bit3 in Ox104 is Ox10C. on the screen.
Step by Step Solution
There are 3 Steps involved in it
Heres a C function that sets a bit in an unsigned integer numb... View full answer
Get step-by-step solutions from verified subject matter experts
