#include
#include
get(int,int);
void main()
{
int a,b,sum;
clrscr();
printf("Type two numbers");
scanf("%d",&a);
scanf("%d",&b);
sum=get(a,b);
printf("Sum=%d",sum);
getch();
}
get(a,b)
{
int sum;
sum=a+b;
return(sum);
}
A Blog which contain many c programs. For further assistance contact: srnassist@gmail.com
No comments:
Post a Comment