blob: 82582d1e9cb2174902b18dc55b3524f97b4ea3c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
*
* 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;
}
|