write a program add two numbers using functions with argument and return
CLASS 12 CBSE
Answers
Answered by
1
Answer:
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 : ");
please mark me as brainliest
Similar questions
Computer Science,
4 months ago
English,
4 months ago
Biology,
9 months ago
Social Sciences,
1 year ago
Computer Science,
1 year ago