Computer Science, asked by afreenmd, 5 hours ago

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 ansh33977
0

Answer:

include<stdio.h>

int main()

{

int a, b;

scanf("%d%d",&a,&b);

printf("%d",(a+b));

return 0;

}

Similar questions