View Single Post
Old 03-03-2003, 07:59 PM   #2 (permalink)
abc123
bloomberg
 
abc123's Avatar
 
Join Date: Jun 2002
Location: bloomberg
Posts: 263
abc123 is on a distinguished road
Send a message via AIM to abc123 Send a message via Yahoo to abc123
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;
}
__________________
-- bloomberg.
abc123 is offline   Reply With Quote