Develop a C program to add two numbers using call by reference
Example output:
Input first number: 21
Input second number:1
Answers
Answered by
0
Answer:
include<stdio.h>
int main()
{
int a, b;
scanf("%d%d",&a,&b);
printf("%d",(a+b));
return 0;
}
Similar questions
Math,
3 hours ago
Biology,
3 hours ago
Accountancy,
5 hours ago
Math,
5 hours ago
English,
8 months ago
Accountancy,
8 months ago
English,
8 months ago