C库函数vsprintf() ```c #include #include char buffer[80]; int vspfunc(char *format, ...) { va_list aptr; int ret; va_start(aptr, format);
確定! 回上一頁