Write a C program to check if the K-th bit (0-based index) of an integer N is set (1) or not (0).
Input Format
Output Format
Example
Input N= 8 & K= 3
8
3
Here Binary value of 8 is 00001000
00001000
So output will be 1
1