C Program to Add two Integers


A program to add two numbers takes to numbers and does their mathematical sum and gives it to another variable that stores its sum.

Example Code

 Live Demo

#include <stdio.h>
int main(void) {
   int a = 545;
   int b = 123;
   printf("The first number is %d and the second number is %d 
", a , b);    int sum = a + b;    printf("The sum of two numbers is %d" , sum);    return 0; }

Output

The first number is 545 and the second number is 123
The sum of two numbers is 668

Updated on: 30-Jul-2019

838 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements