![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
#include
...
, at the end of the parameter
list:
return type program name (ordinary parameters, ...) { ... }
va_list
to define an argument pointer,
and then use va_start
to assign the appropriate value to
the argument pointer, and then use va_arg
to fetch the
arguments, and then clean up using va_end
.