C Program to Add Two Integers #3

C Program to Add Two Integers

In this program, user is asked to enter two integers. Then, the sum of those two integers is stored in a variable and displayed on the screen.
Addition in Programming
To understand this example, you should have the knowledge of following C programming topics:
  • C Programming Data Types
  • C Programming Constants and Variables
  • C Input Output (I/O)
  • C Programming Operators

Program to Add Two Integers

#include <stdio.h>
int main()
{
    int firstNumber, secondNumber, sumOfTwoNumbers;
    
    printf("Enter two integers: ");

    // Two integers entered by user is stored using scanf() function
    scanf("%d %d", &firstNumber, &secondNumber);

    // sum of two numbers in stored in variable sumOfTwoNumbers
    sumOfTwoNumbers = firstNumber + secondNumber;

    // Displays sum      
    printf("%d + %d = %d", firstNumber, secondNumber, sumOfTwoNumbers);

    return 0;
}
Output
Enter two integers: 12
11
12 + 11 = 23
In this program, user is asked to enter two integers. Two integers entered by the user is stored in variables firstNumber and secondNumber respectively. This is done using scanf()function.
Then, variables firstNumber and secondNumber are added using + operator and the result is stored in sumOfTwoNumbers.
Sum of two integers in C programming
Finally, the sumofTwoNumbers is displayed on the screen using printf() function.

Comments

Popular

C Programming Files I/O

C Program to Display Prime Numbers Between Two Intervals #33

C Data Types

C if...else Statement

While and Do...While Loop