C Programming :: Functions
-
If a function contains two return statements successively, the compiler will generate warnings. Yes/No ?
-
Will the following functions work?
int f1(int a, int b) { return ( f2(20) ); } int f2(int a) { return (a*a); }