Question: C function to complete- Complete the getbit function below in C lanauge. It returns the value of the ith bit of an integer (bit 0

C function to complete-

Complete the getbit function below in C lanauge. It returns the value of the ith bit of an integer (bit 0 is the rightmost bit).

int getbit(int x, int i) {

example:

int x = 0x101001; // or, int x = 41;

int I;

for (I=0; i<6; i++)

printf("%d ", get_bit(x,i);

This would print 1 0 0 1 0 1

You should use shift and/or bitwise operators.

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!