0 votes
138 views
in C programming by (98.9k points)
edited
C Program to Add Two Numbers Using Pointers

1 Answer

0 votes
by (98.9k points)
selected by
 
Best answer
#include <stdio.h>
#include <conio.h>
 
int main(){
     
    int firstNumber, secondNumber, sum;
    /* Pointers declaration */
    int *firstNumberPointer, *secondNumberPointer;
    printf("Enter two numbers \n");
    scanf("%d %d", &firstNumber, &secondNumber);
    /* Pointer assignment*/
    firstNumberPointer = &firstNumber;
    secondNumberPointer = &secondNumber;
     
    sum = *firstNumberPointer + *secondNumberPointer;
    printf("SUM = %d", sum);
    getch();
    return 0;
}

 

Related questions

0 votes
1 answer 108 views
asked Jul 20, 2022 in C programming by Doubtly (98.9k points)
0 votes
1 answer 124 views
0 votes
1 answer 883 views
asked Jul 20, 2022 in C programming by Doubtly (98.9k points)
0 votes
1 answer 142 views
asked Jul 20, 2022 in C programming by Doubtly (98.9k points)

Doubtly is an online community for engineering students, offering:

  • Free viva questions PDFs
  • Previous year question papers (PYQs)
  • Academic doubt solutions
  • Expert-guided solutions

Get the pro version for free by logging in!

5.7k questions

5.1k answers

108 comments

535 users

...