Program:
#include <stdio.h>
int main() {
int num1 = 50;
int num2 = 40;
int addition = num1 + num2;
printf("The addition of two numbers 50 and 40 is %d", addition);
return 0;
}
The addition of two numbers 50 and 40 is 90
Tags:
C Programs