New Post has been published on Learning Hub
New Post has been published on http://ictjobs.info/program-check-bit-position-set/
C Program to Check if a given Bit Position is set to One or not
#include <stdio.h> void main() unsigned int number; int result, position; printf("Enter the unsigned integer:\n"); scanf("%d", &number); printf("enter position to be searched\n"); scanf("%d", &position); result = (number >> (position)); if (result & 1) printf("TRUE\n"); else printf("FALSE\n");
Output
Enter the unsigned integer: 128 enter position to be searched 7 TRUE











