Question: Write a C program: The left-shift operator can be used to pack two character values into a 2-byte unsigned int variable. Write a program that

Write a C program: The left-shift operator can be used to pack two character values into a 2-byte unsigned int variable. Write a program that inputs two characters from the keyboard and passes them to function packCharacters. To pack two characters into an unsigned int variable, assign the first character to the unsigned int variable, shift the unsigned int variable left by 8 bit positions and combine the unsigned variable with the second character using the bitwise inclusive OR operator. The program should output the characters in their bit format before and after theyre packed into the unsigned int to prove that the characters are in fact packed correctly in the unsigned int variable.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!