例 24.9. 用可變參數實現簡單的printf函數. #include <stdio.h> #include <stdarg.h> void myprintf(const char *format, ...) { va_list ap; char c; va_start(ap, ...
確定! 回上一頁