Dear All!
While looking for the implementation of the printf function, I came
across the implementation
that used the following construct
int printf(const char *format, ...)
What is the meaning of "..."? I didn't find it in K&R book, and
looking for "..." on the web doesn't seem to be productive. The actual
implementation of the function is a working piece of code,
I managed to compile it successfully.
Is it the way of introducing the generic programming paradigm within
the C language?
Thanks.
While looking for the implementation of the printf function, I came
across the implementation
that used the following construct
int printf(const char *format, ...)
What is the meaning of "..."? I didn't find it in K&R book, and
looking for "..." on the web doesn't seem to be productive. The actual
implementation of the function is a working piece of code,
I managed to compile it successfully.
Is it the way of introducing the generic programming paradigm within
the C language?
Thanks.
Comment