Hi,

In this case, i want to use a double parameter function, but i keep getting an error which says:

\error: too few arguments to function 'int add(int, int)' \

And here is the part of code that i`ve written and the compiler says it`s wrong:

Code:
int add(int x, int y)
	{
	    return x + y;

	}

by the way i use codeblocks compiler.

thnx.