cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
array={0,0,...}
array={0,0,...}
Dec 21, 2013 at 12:38am UTC
sargon94
(405)
I must be nuts, but does "..." do anything? I could've sworn it did something.
Dec 21, 2013 at 1:07am UTC
naraku9333
(2163)
In that context they generate a compile error.
Ellipses are used in variadic functions
http://en.cppreference.com/w/cpp/utility/variadic
and variadic templates
http://en.wikipedia.org/wiki/Variadic_template
Dec 21, 2013 at 1:39am UTC
sargon94
(405)
Thanks, I was losing my mind over this.
Topic archived. No new replies allowed.