sum of two numbers in c using function code example
Example 1: c program to add two numbers
#include <stdio.h>
int main() {
int number1, number2, sum;
printf("Enter two integers: ");
scanf("%d %d", &number1, &number2);
// calculating sum
sum = number1 + number2;
printf("%d + %d = %d", number1, number2, sum);
return 0;
}
Example 2: addition of two numbers in c
int num1,num2;
printf("%d",num1+num2);