如下例子展示如何使用va_start,va_end,va_list: #include <stdarg.h> int dbg_printf( const char * format, ... ) { va_list ap; int ret; ...
確定! 回上一頁