You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
443 B
C

/*
* 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");
}