Apr 1, 2013 at 5:36pm
So i have two functions like:
int function1(int parameter1){
return int random stuff;
}
int function2 (int function1){
return int blah blah;
}
So i need the return value of the first function as the parameter on the second
and i just cant figure out how
Apr 1, 2013 at 5:38pm
int function2 (int ){
return int blah blah;
}
function2( function1( SomeIntArgument ) );
Apr 1, 2013 at 6:06pm
thanks vlad got it working