/* * * 6.49 * * */ int main () { // What is a candidate function? A function with the same name as the function being called, could be one or more // What is a viable function? It must have same number of parameters as arguments in the calling function, and the types must match or be convertible. return 0; }