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