C program to find the sum of two numbers

 


C Program to find sum of two numbers

CODE

#include<stdio.h>

int main()
{
int a,b,sum=0;
printf("Enter any two numbers");
scanf("%d%d",&a,&b);
sum=a+b;
printf("The sum is %d",sum);
return 0;
}

OUTPUT




Comments