Computer Science, asked by mozocreation545, 11 months ago

C program for addition of two numbers using functions

Answers

Answered by nithiabhi1227
0

Answer:

#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 : ");

Explanation:

mark me an brainliest

Similar questions