Add Two Numbers using Pointers in C Language

program-to-add-two-numbers-using-pointers-in-c-language

Add Two Numbers using Pointers in C Program Description:

Write a Program to add two numbers using pointers in c programming language. The program should accept two integers from the user and add the given integers by using the pointers.

📢This program is part of the Pointers Practice programs series.

Let’s look at the excepted input and output of the program

Excepted Input and Output:

Input:

Enter value for first number(num1): 44

Enter value for second number(num2): 63

Output:

Sum of 44+63 = 107

Prerequisites of the program:

It is recommended to go through the introduction to the pointers in C and how to use the address of operator and dereference operator in c to better understand the following program.

Add Two Numbers using Pointers in C Program Explanation:

We are going to create a function named sum, Which calculates the sum of the given numbers. Let’s look at the step-by-step instructions of the program.

  1. Start the program by creating a function called sum. The sum function takes three integer pointer variables as formal arguments, They are num1, num2, and result.
    • Here is the prototype of the sum() function – void sum( int *num1, int *num2, int *result)
    • The sum function calculates the sum of the num1 and num2 and updates the calculated sum value in the result variable.
    • As all three formal arguments are pointer variables, We need to use the Dereference or Indirection Operator(‘*’) to get the value at the pointer. For example, we need to use the *num1 to get the value of the num1.
    • Finally, Update the result variable with the sumvalue using *result = *num1 + *num2;
    • As the variables are passed by the address/reference, All changes made in the sum function will reflect in the caller. So we no need to return anything back to the caller.
  2. In the main() function, Take the two integer values from the user and store them in the variables num1 and num2 using scanf function.i.e use the address of operator
  3. Call the sum() function and pass the variables num1, num2, and result with addresses. i.e use the address of operator(&)
    • sum(&num1, &num2, &result);
  4. The above function call will calculate the sum of num1 and num2 and stores the result in result variable. So to display the sum of two numbers on the console using a printf function.
  5. Stop the program.

Let’s convert the above algorithm into the C program.

Program to Add Two Numbers using Pointers in C Language:

Here is the program to add two numbers using pointers in c programming language.

Note that we are calling the sum() function with addresses(sum(&num1, &num2, &result);). So all changes made in the sum() function will be visible in the main() function.

📢We’re passing num1 and num2 as addresses to the sum() function, but since we’re not changing them, we can also pass them as regular variables. That being said, in order to demonstrate and understand the pointer variables, we passed them as pointers.

Program Output:

Let’s compile and Run the program using GCC compiler (Any compiler)

Test 1:

add-two-numbers-using-pointers-in-c-program-output

In this example, the user provided the numbers 44 and 63 and the program used pointers to perform the addition of two numbers and returned the result as 107.

Let’s try few more examples

Test 2:

As you can see the program is properly calculating the sum of given numbers and providing the output.

Related Programs:

Venkatesh

Hi Guys, I am Venkatesh. I am a programmer and an Open Source enthusiast. I write about programming and technology on this blog.

You may also like...

1 Response

  1. […] Program to Add Two Numbers using Pointers in C […]

Leave a Reply