Addition of two numbers in C

In this example, We will take two numbers from users and calculate the addition of these two number and displayed on the screen.

C Program to Add Two numbers

#include<stdio.h>
void main()
{
 int a=10,b=5;
 printf("addition of two number is %d",a+b);
} 

output

addition of two numbers is 15