hello everyone (again)
for some strange reason, my compiler doesn't compile functions
of course, it's probably my mistakes
so i declared the function
int blah(int blah1, int blah2);
int main()
{
yeah yeah yeah;
blah(blah1, blah2);
return 0;
}
int blah(int blah1, int blah2)
{
the code;
return 0;
}
my code (like this one) will not compile.
the compiler says :
passing 'int' to argument 1 of 'blah(int *, int)' lacks a cast.
I did the functions according to tutorial, and i checked extra carefully so that there are no spelling errors.any help would be greatly appreciated
thanks



LinkBack URL
About LinkBacks


