predict the output:

#includestdio.h
int sum(int a,int b);
int main()
{
int a, b,d;
printf("enter the value of a and b:\n");
scanf("%d%d",&a,&b);
sum(a,b);
return 0;
}
int sum(int a,int b)
{
return a+b;
}


Posted on by