All submissions

Check if K-th Bit is Set

Code

#include <stdio.h>

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

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

Solving Approach

 

 

 

Loading...

Input

8 3

Expected Output

1