

MCQOPTIONS
Saved Bookmarks
1. |
Will the following functions work? int f1(int a, int b) { return ( f2(20) ); } int f2(int a) { return (a*a); } |
A. | Yes |
B. | No |
Answer» B. No | |