Will the following function work? f1 ( int a, int b ) { return ( f2 (20) ); } f2 ( int a ) { return ( a * a ); }

Correct Answer: Yes

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion