Develop a C program to add two numbers using call by reference Example output: Input first number: 21 Input second number:14 The sum is:35
Answers
Answered by
1
Explanation:
Write a program in C to add ... Sample Output: ... Input the first number : 5 Input the second number : 6 The sum of 5 and 6 is 11.
Answered by
2
Answer:
Explanation:
#include <stdio.h>
void main()
{
int a=11, b=53 ,c;
c=a+b;
printf("result=%d",c);
}
Similar questions