K&R-style variadic functions

Walter Bright newshound2 at digitalmars.com
Wed Jul 18 11:43:45 PDT 2012


On 7/18/2012 4:59 AM, Jacob Carlborg wrote:
> Does that mean that this C++ declaration:
>
> void foo (...);

Not allowed in C or C++.

> Is the same as this C declaration?
>
> void foo ();

That is void foo(void) in C++.





More information about the Digitalmars-d mailing list