Computer Science, asked by yasaswiniaddanki, 7 months ago

add 2 numbers using call by references in c program ​

Answers

Answered by Anonymous
3

1. int main() { int first, second, *p, *q, sum;

2. printf("Enter two integers to add\n"); scanf("%d%d", &first, &second);

3.&second);p = &first; q = &second;

4. sum = *p + *q;

5. printf("Sum of the numbers = %d\n", sum);

6. return 0; }

Answered by syutika12
0

Answer:

Question is not clear

Explanation:

..

Similar questions