void add (int a, int b)
{
int c= a+b;
printf("the value of c is %d",c);
}
void main()
{
int x,y;
printf("Enter two numbers: ");
scanf("%d %d",&x,&y);
add (x,y);
}
I understand what function deceleration or prototype is...But which line of code in this program is considered to be a function prototype .....Or there isn't any function prototype in this program???