va_list ap; char buffer[300]; va_start(ap, format); vsprintf_s(buffer, sizeof(buffer), message, ap); va_end(ap); printf("%s", buffer); }.
確定! 回上一頁