In this example, We will take two numbers from users and calculate the addition of these two number and displayed on the screen.
#include<stdio.h>
void main()
{
int a=10,b=5;
printf("addition of two number is %d",a+b);
}
addition of two numbers is 15