Ellipsis (computer programming): Difference between revisions

Content deleted Content added
Line 42:
:<code>func("input string %s, %f", "another string", 0.5);</code>
 
[[C99]] introduced macros with a [[variadic macro|variable number of arguments]].<ref>Working draft changes for C99 preprocessor synchronization - http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1653.htm</ref>
 
[[C++11]] included the C99 preprocessor,<ref>Working draft changes for C99 preprocessor synchronization - http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1653.htm</ref> and also introduced templates with a [[variadic template|variable number of arguments]].
 
===Java===