Name: OP 2012-04-30 4:57
These are pretty trivial, but I am no programmer.
if I do swap( 4, 6 )
where
int swap( int x, int y) {
x = y;
y = x;
return( y );
}
What will it return and why?
if I do swap( 4, 6 )
where
int swap( int x, int y) {
x = y;
y = x;
return( y );
}
What will it return and why?