Home » Technical Questions » Programming

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

Correct Answer: Yes

← Previous Question Next Question→

Discussion & Comments

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