C Program to Find Whether a Given Number is Power of 2 using Bitwise Operators

This is a C Program to check if a given integer is power of 2 using bitwise operators.

Problem Description

This C Program checks if a given integer is power of 2 using bitwise operators.

Problem Solution

Take input from the user and performs bitwise operations as shown in the program below.

Program/Source Code

Here is source code of the C Program to check if a given integer is power of 2 using bitwise operators. The C program is successfully compiled and run on a Linux system. The program output is also shown below.

/*
 * C Program to Check if a given Integer is Power of 2 using Bitwise Operators
 */
#include <stdio.h>
#define NUM_BITS_INT (8*sizeof(int))
 
int power_of_2(unsigned int);
 
int main()
{
    unsigned int num;
 
    printf("\nEnter Number");
    scanf("%d", &num);
    power_of_2(num);
}
 
/*
 * Finding the power of 2 using bit wise operators
 */ 
int power_of_2(unsigned int x)
{
    int i, count = 0, result, shift_num;
 
    for (i = 0;i <= NUM_BITS_INT;i++)
    {
        shift_num = x >> i;
        result = shift_num & 1;
        if (result == 1)
            count++;
    }
    /*
     *If number of bits set to 1 are odd then the number is power of 2
     *If number of bits set to 0 are even then the number is not power of 2
     */
    if (count % 2 == 1)
        printf("YES");
    else 
        printf("NO");
}
Program Explanation

In this C Program, we are reading the number using ‘num’ variable. The power_of_2() function is used for finding the power of 2 using bit wise operators. Binary Right Shift operator the left operands value is moved right by the number of bits specified by the right operands and assign the value to ‘shift_num’ variable.

advertisement
advertisement

The ‘result’ variable is used compute the Binary AND operation by copying a bit to the result if it exists in both operands. If condition statement is used to check the value of ‘res’ variable is equal to 1. If the condition is true then execute the statement and increment the value of ‘count’ variable.

If else condition statement is used to check that the number of bits set to 1 is odd and print the number is power of 2. Otherwise, if the condition is false and print the number is not power of 2 and displays the output of the program.

Runtime Test Cases
 
$ gcc bit25.c
$  a.out
Enter Number128
YES
$  a.out
Enter Number126
NO

Sanfoundry Global Education & Learning Series – 1000 C Programs.

Note: Join free Sanfoundry classes at Telegram or Youtube

Here’s the list of Best Books in C Programming, Data-Structures and Algorithms

If you wish to look at programming examples on all topics, go to C Programming Examples.

advertisement
If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.