(ANSI) C Reference: Using stdarg.h for Variable Arguments Handling

There are cases where a function needs to accept varying numbers of arguments of varying type. For this we can use the macros defined in the header file stdarg.h. In this header file (stdarg.h) there macros defined that can be used to access the arguments of a list of unnamed (arguments with no corresponding parameter declarations) arguments.

There is one type described in stdarg.h: More »


Posted in C Reference stdarg.h Functions | Comments Off on (ANSI) C Reference: Using stdarg.h for Variable Arguments Handling