C++ function call with incomplete argument

440 Views Asked by At

I got a question about C++ function call.

Suppose I have defined a function like foo(int a, bool b=true); But when I try to call it. I use foo(3), Will this function call use foo(int a, bool b=true) ? Or this is not allowed?

Thanks

3

There are 3 best solutions below

0
On BEST ANSWER

Will this function call use foo(int a, bool b=true) ?

Yes, it will use the default argument and foo(3, true) will be called.

0
On

Yes, it will (but only in C++, not straight C).

http://en.wikipedia.org/wiki/Default_argument

0
On

It is allowed because the second parameter you defined has a default value.