Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C Program to Check Power of 2

Posted in C Tutorial
Updated on Jan 11, 2024
By Mari Selvan
πŸ‘οΈ 88 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
C Program to Check Power of 2

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, efficiency and optimization are key considerations. One common optimization involves determining whether a given number is a power of 2.

Checking if a number is a power of 2 is a fundamental operation with applications in various domains.

In this tutorial, we'll explore a C program that efficiently checks whether a given number is a power of 2.

πŸ“„ Example

Let's delve into the C code that accomplishes this functionality.

isPowerOfTwo.c
Copied
Copy To Clipboard
#include <stdio.h>

// Function to check if a number is a power of 2
int isPowerOfTwo(int num) {
  // A number is a power of 2 if and only if it has a single set bit.
  // Using bitwise AND operation to check this condition.
  return (num > 0) && ((num & (num - 1)) == 0);
}

// Driver program
int main() {
  // Replace this value with your desired number
  int number = 16;

  // Check if the number is a power of 2
  if (isPowerOfTwo(number)) {
    printf("%d is a power of 2.\n", number);
  } else {
    printf("%d is not a power of 2.\n", number);
  }

  return 0;
}

πŸ’» Testing the Program

To test the program with different numbers, simply replace the value of number in the main function.

Output
16 is a power of 2.

Compile and run the program to see whether the given number is a power of 2.

🧠 How the Program Works

  1. The program defines a function isPowerOfTwo that takes an integer as input and returns 1 if the number is a power of 2 and 0 otherwise.
  2. Inside the function, it uses a bitwise AND operation to check if the number has a single set bit, which is a characteristic of power-of-2 numbers.
  3. The main function demonstrates the usage of the isPowerOfTwo function by checking if a given number is a power of 2.

πŸ“ Between the Given Range

Let's dive into the C code that performs the check for powers of 2 in the range 1 to 20.

isPowerOfTwo.c
Copied
Copy To Clipboard
#include <stdio.h>
#include <math.h>

// Function to check if a number is a power of 2
int isPowerOfTwo(int num) {
  return (num && !(num & (num - 1)));
}

// Driver program
int main() {
  printf("Power of 2 in the range 1 to 20:\n");

  for (int i = 1; i <= 20; ++i) {
    if (isPowerOfTwo(i)) {
      printf("%d ", i);
    }
  }

  printf("\n");

  return 0;
}

πŸ’» Testing the Program

The output of the program, showing powers of 2 in the range from 1 to 20, will be displayed in the following format:

Output
Power of 2 in the range 1 to 20:
1 2 4 8 16

🧠 How the Program Works

  1. The program defines a function isPowerOfTwo that checks whether a given number is a power of 2 using bitwise operations.
  2. The main function iterates through numbers from 1 to 20 and prints those that are powers of 2.

🧐 Understanding the Concept of Power of 2

A number is considered a power of 2 if and only if it has a single set bit.

For example, 2, 4, 8, and 16 are powers of 2 because their binary representations have only one bit set.

Understanding this concept is crucial for efficient programming and algorithm design.

🎒 Optimizing the Program

The provided program is a straightforward implementation. However, there are more advanced techniques for checking if a number is a power of 2, such as using logarithmic operations or counting the number of set bits. Depending on your specific use case, you might explore these optimizations.

Feel free to incorporate and modify this code as needed for your specific requirements. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
4 months ago

If you have any doubts regarding this article (C Program to Check Power of 2), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy