Where is the simple error?

Go4Expert Member
6Dec2007,04:45   #1
cquestion's Avatar
Hello, i'm going mad because I can't find the problem in this simple code. Why do this don't work?
Code:
float promedi(a,b)
{
return ((a+b)/2);
}

main()
{
float x,y;
printf("Dame dos valores\n");
scanf("%f%f", &x, &y);
printf("%f",promedi(x,y));
system("pause");
}
I got at least two different errors (strange long number solutions, window must close...).

Thanks in advance.

Last edited by shabbir; 6Dec2007 at 09:43.. Reason: Code block
Go4Expert Member
6Dec2007,05:30   #2
cquestion's Avatar
When it says 'Dame dos valores' it means tell me two numbers.
Go4Expert Founder
6Dec2007,09:44   #3
shabbir's Avatar
Duplicate of Where is the simple error?. Thread closed.