Computer Science, asked by jpal12293, 2 months ago

Write a program to add the number with the help of functions​

Answers

Answered by keshav2150
1
  1. #include<stdio.h>
  2. int main() {
  3. int num1, num2, res;
  4. printf("\nEnter the two numbers : ");
  5. scanf("%d %d", &num1, &num2);
  6. //Call Function Sum With Two Parameters.
  7. res = sum(num1, num2);
  8. printf("nAddition of two number is : ");
Similar questions