because otherwise you have no reference to them
to solve the problem try this:
Code:
int abc(int x); // declare your func
// obviously, however, this declaration must be above where you call the function ( in this case; main() )
int main(){
int i;
i = abc(34);
}
int abc(int x){ //implement your func
return x + 1;
}