2.10.4 va_end Declaration: void va_end(va_list ap); Allows a function with variable arguments which used the va_start macro to return. If va_end is not called before returning from the function, the result is undefined. The variable argument list ap may no longer be used after a call to va_end without a call to va_start. Example: #include<stdarg.h> #include<stdio.h> void sum(char *, int, …); int main(void) { sum(“The […]
va_end
Daha Fazla →