HomeC ProgrammingC Program to Perform Addition using Bitwise Operators

C Program to Perform Addition using Bitwise Operators

This C program demonstrates addition using bitwise operators. Bitwise operators are efficient for performing arithmetic operations at the binary level.

Bitwise operators in C are used to manipulate individual bits of data at the binary level. These operators work on the individual bits of operands, performing operations such as AND, OR, and XOR, and shifting bits left or right. One common application of bitwise operators is performing arithmetic operations, such as addition, using only these operators.

Problem Statement

Your program should define a function called bitwiseAdd that takes two integer parameters and returns the sum. The addition should be performed using bitwise operators only, without using the conventional addition operator (+).

The program should have the following specifications:

  • The program should prompt the user to enter two integers.
  • It should call the bitwiseAdd function with the input values.
  • The bitwiseAdd function should implement the addition using bitwise operators.
  • The sum calculated using bitwise operations should be returned by the bitwiseAdd function.
  • The program should then print the resulting sum.

Note: Assume that the input integers are non-negative.

Example:

Enter two numbers: 5 3

Sum: 8

In the above example, the user enters the numbers 5 and 3. The program performs the bitwise addition operation and calculates the sum as 8 using the bitwiseAdd function. Finally, it prints the sum as the output.

Your task is to implement the bitwiseAdd function and the main program logic to solve the problem.

C Program to Perform Addition using Bitwise Operators

#include <stdio.h>

int add(int a, int b) {
    while (b != 0) {
        int carry = a & b;
        a = a ^ b;
        b = carry << 1;
    }
    return a;
}

int main() {
    int num1, num2, sum;

    printf("Enter two numbers: ");
    scanf("%d %d", &num1, &num2);

    sum = add(num1, num2);

    printf("Sum: %d\n", sum);

    return 0;
}

How it Works

The program works by implementing addition using bitwise operators. It takes two integers as input and performs the addition operation without using the conventional addition operator (+). Here’s how it works:

  1. The program prompts the user to enter two integers.
  2. The scanf function is used to read the input values and store them in variables num1 and num2.
  3. The program then calls the bitwiseAdd function, passing the input values num1 and num2.
  4. Inside the bitwiseAdd function, a while loop is used to continue the addition until there is no carry left.
  5. In each iteration of the while loop, the bitwise AND operator & is used to calculate the carry. The carry is obtained by performing a bitwise AND operation between a and b.
  6. The bitwise XOR operator ^ is used to calculate the sum without the carry. The sum is obtained by performing a bitwise XOR operation between a and b.
  7. The carry is then shifted to the left by one position using the left shift operator <<. This prepares the carry for the next iteration.
  8. The updated values of sum and carry are assigned back to a and b, respectively.
  9. The while loop continues until there is no carry left (i.e., b becomes 0).
  10. Finally, the function returns the calculated sum.
  11. Back in the main function, the returned sum is stored in the sum variable.
  12. The program then prints the resulting sum using the printf function.

By using bitwise operators and the concept of binary addition, the program effectively performs addition without using the conventional addition operator.

Input /Output

C Program to Perform Addition using Bitwise Operators

In this example, the user enters the numbers 9 and 7. The program performs the bitwise addition operation and calculates the sum as 16 using the bitwiseAdd function. Finally, it prints the sum as the output.

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C program calculates the volume and surface area of a sphere using its radius. A sphere is a three-dimensional...
This C program converts a Roman numeral to a decimal number. Roman numerals are a system of numerical notation used...
This C program calculates the value of sin(x) using the Taylor series expansion. The Taylor series expansion is a mathematical...