Computer Science, asked by WalkyTalky, 9 months ago

write a program add two numbers using functions with argument and return
CLASS 12 CBSE ​​

Answers

Answered by sehajpalamit
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