answersLogoWhite

0


Best Answer

//Adding two numbers using pointers

#include<stdio.h>

void main()

{

int *a,*b,c,n1,n2;

scanf("%d %d",&n1,&n2);

a=&n1;

b=&n2;

c=*a+*b;

printf("Added value is:%d",c);

}

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

#include<stdio.h>

#include<conio.h>

main()

{

int sum(int a,int b,int c);/*function prototype*/

int x,y,z;

clrscr();

printf("enter two values to perform addition:");

scanf("d,&x,&y);

sum(x,y,z);

printf("addition result: %d",sum(x,y,z));

getch();

return 0;

}

int sum(int a,int b,int c)

{

c=a+b;

return c;

}

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

Algorithm in C Language:

int *a,*b; //Declaraction of the two pointers

int sum;

scanf("%d%d",a,b); //Reading values of the 2 variables

sum=*a+*b;

printf("SUM = %d",sum);

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Add two numbers in pointer in using c program?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

1 To develop a program using the ADI instruction to add the two hexadecimal numbers 3AH and 48H and store the result in memory location 2100H?

Write a program using the ADI instruction to add the two hexadecimal numbers 3AH and 48H and store the result in memory location 2100H


When using distributive property if you add the numbers is the answer a product or a sum?

If you simply add numbers the answer is the sum of those numbers.


Add two numbers in pointer in using c plus plus?

int* a = new int(40); int* b = new int(2); int x = *a + *b; // x = 42 delete b; delete a;


Advantage of a spread sheet program?

You can easily add together lots of numbers, create graphs, and compute things using formulas on large amounts of data.


How can you add numbers?

Using the additive property (+).


How a program in c that will add 2 numbers without using any operator?

Not possible. Let's not forget than in C the followings are all operators:+, -+=, -=++, --=&, *, []function-call


How do you get the sum of two numbers?

The best method is to add the numbers, using arithmetic.


How do you write a program in java to read ten numbers and print sum of ten integers?

Add the numbers into one variable as you read them in. But if you prefer, you can read the numbers into an array and then use a loop to add the numbers together.


How do you work out a hexagon add-on-agons using negative numbers?

you ADD all the #s


2 Write a program to print a following program?

USING STRING LITERAL VALUES TO ADD 2 NUMBERS If you just want to show the outcome of two numbers you have: PRINT 4 + 5 This will print '9' the answer to 4 + 5. If you want to show the addition: PRINT "4 + 5 = "; 4 + 5 This will show the question and then calculate the answer. If you want the user to input numbers to add, use variables and then add them the same way. ====== COLLECTING USER INPUT FROM THE KEYBOARD/USING NUMERIC VARIABLES In the following example, the end user can get to interact with the program by typing in their numbers at the keyboard; then, pressing the [Enter] key. CLS PRINT "PROGRAM: Add 2 numbers" PRINT INPUT "Enter the 1st number: ", number1 INPUT "Enter the 2nd number: ", number2 PRINT sumTotal=number1+number2 PRINT "The sum total is: "; sumTotal PRINT INPUT "Again, Y/N"; yesNo$ IF UCASE$(LEFT$(yesNo$,1))="Y" THEN RUN END ====== CREATE FUNCTION/THEN, MAKE A FUNCTION CALL TO ADD 2 NUMBERS Another way to write this program is to create a function/then, make a function call... '*** PROGRAM: Add 2 numbers... '*** Variable declaration list... number1=7 '...initialise numeric variable 1 number2=3 '...initialise numeric variable 2 '*** Main program... CLS '...(CL)ear the (S)creen PRINT add(number1,number2) '...make function call/passing in 2 numbers to add END '...END of program/halt program code execution '*** Function(s)... FUNCTION add(num1,num2) '...this line marks the start of the Function add=num1+num2 '...this line returns the sum total of the 2 numbers END FUNCTION '...this line marks the end of the Function


How do you make an average using given numbers?

add them all together and then divide the answer by the number of numbers.


Write a program in 8051 to add 2 16- bit numbers?

Mov a.#000ff, mov b,#0008f add a,b