Write a program to add the number with the help of functions
Answers
Answered by
1
- #include<stdio.h>
- int main() {
- int num1, num2, res;
- printf("\nEnter the two numbers : ");
- scanf("%d %d", &num1, &num2);
- //Call Function Sum With Two Parameters.
- res = sum(num1, num2);
- printf("nAddition of two number is : ");
Similar questions
Math,
2 months ago
Physics,
2 months ago
Math,
5 months ago
Computer Science,
11 months ago
Math,
11 months ago