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
Get step-by-step solutions from verified subject matter experts
