What does this function return?
int fl(int a, int b) { return(a>b?a:b); }
runtime error
the smaller value of the two passed parameters
the greater value of the two passed parameters
compiler error