Check if K-th Bit is Set

Code

#include <stdio.h>

int isKthBitSet(int n, int k) {
    // Write your code here
    if(n&(1<<k))
    {
        return 1;
    }
    else
    {
        return 0;

    }

}

int main() {
    int n, k;
    scanf("%d %d", &n, &k);
    printf("%d", isKthBitSet(n, k));
    return 0;
}

Solving Approach

return the value as 1 if n&(1<<k) is true, else return 0

 

 

Upvote
Downvote
Loading...

Input

8 3

Expected Output

1