#include<stdio.h>
#include<conio.h>
int add(int *a,int *b)
{
int c;
c= *a + *b;
return c;
}
void main()
{
int a,b,sum;
clrscr();
printf("enter the values of a & b") ;
scanf("%d%d",&a,&b);
sum=add(&a,&b);
printf("%d",sum);
getch();
}
Answers
Answered by
1
Answer:
Sorry I can't understand the question
Similar questions