add 2 numbers using call by references in c program
Answers
Answered by
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
0
Answer:
Question is not clear
Explanation:
..
Similar questions