home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET 2
/
BCI NET 2.iso
/
archives
/
programming
/
c
/
c2man-2.0pl33.lha
/
c2man-2.0
/
eg
/
ellipsis.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-01-14
|
238 b
|
16 lines
int pr(int,...);
void main(void)
{
pr(3, 'a', 'b', 'c');
}
/* ellipsis test function */
int pr(
int nitems, /* number of items */
... /* items */
)
{
/* blah, blah, blah, blah, blah! */
}