Sum Of Two Numbers
- Code Craze
- Feb 8, 2023
- 1 min read

#include <stdio.h>
void main() {
int num1, num2, sum;
printf("Enter the first number: ");
scanf("%d", &num1); // Read the first number from the user
printf("Enter the second number: ");
scanf("%d", &num2); // Read the second number from the user
sum = num1 + num2; // Calculate the sum
printf("The sum of %d and %d is %d\n", num1, num2, sum); //Result
}
Comments