Retro C++ quiz #55
Given the following in C++:
void f(int);
void f(short);
void f(long);
And the call to f() below:
void g(){
f(0u);
}
Assuming LP64, which f() is chosen:
A. f(int)
B. f(short)
C. f(long)
D. ambiguous can’t choose
A
B
C
D
Poll ended at .