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