Read variable with sum of any two number
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
printf("Enter any two number");
scanf("%d %d",&a,&b); //predifine function
c=a+b;
printf("sum of two numbers are=",c);
getch();
}
Post a Comment