View Single Post
  #4 (permalink)  
Old 4th January 2010, 22:08
Enivid's Avatar
Enivid Enivid is online now
Administrator
 
Join Date: Nov 2008
Posts: 1,542
Thanks: 18
Thanked 20 Times in 16 Posts
Default

You declare your functions incorrectly. In declarations of the functions you should mention only the types and the names of the parameters, not the values (or other functions). Example of a correct declaration:

double func(int a, double b, long c)
{
//bla bla bla
return a+b+c;
}
Reply With Quote