14. Function Overloading

Question.3

A developer defines two overloads:

void send(int val);
void send(double val);

send(3.14f);  // Pass a float

Which overload is called?

Need Help? Refer to the Quick Guide below

Select Answer