Sunday, June 5, 2016

Addition of Two Numbers Using Pointers in C

This simple program that I wrote using C programming language will ask the user to give two numbers and then our program will compute the sum of the two numbers using pointers as our data structure. The code is very easy to understand and use.

 Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360




Sample Program Output


Program Listing

#include <stdio.h>
#include <stdlib.h>

int first=0,second=0, *a, *b, sum=0;

int main()
{
    printf("Addition of Two Numbers Using Pointers in C");
    printf("\n\n");
    printf("Enter First Value  : ");
    scanf("%d",&first);
    printf("Enter Second Value : ");
    scanf("%d",&second);

    a=&first;
    b=&second;

    sum=(*a+*b);

    printf("\n\n");
    printf("The sum of %d and %d is %d.",first,second,sum);
    printf("\n\n");
    system("pause");
}







No comments:

Post a Comment