std::vwprintf, std::vfwprintf, std::vswprintf
De cppreference.com
![]() |
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
Definido en el archivo de encabezado <cwchar>
|
||
int vwprintf( const wchar_t* format, va_list vlist ); |
(1) | |
int vfwprintf( FILE* stream, const wchar_t* format, va_list vlist ); |
(2) | |
int vswprintf( const wchar_t* buffer, const wchar_t* format, va_list vlist ); |
(3) | |
Carga los datos de ubicaciones, definidos por
vlist
,, los convierte a equivalentes de cadena ancha y escribe los resultados a una variedad de fregaderos .Original:
Loads the data from locations, defined by
vlist
,, converts them to wide string equivalents and writes the results to a variety of sinks.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Escribe los resultados stdout .
Original:
Writes the results to stdout.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
Escribe los resultados en un archivo ..
stream
corrienteOriginal:
Writes the results to a file stream
stream
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
Escribe los resultados en un
buffer
cadena ancha .Original:
Writes the results to a wide string
buffer
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
Esta sección está incompleta |
[editar] Valor de retorno
Número de caracteres anchos escritos si el valor del éxito o negativo si ocurre un error .
Original:
Number of wide characters written if successful or negative value if an error occurred.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Ejemplo
Esta sección está incompleta Razón: sin ejemplo |
[editar] Ver también
imprime la salida formateada carácter ancho a stdout, una secuencia de archivo o un tampón Original: prints formatted wide character output to stdout, a file stream or a buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
Documentación de C para vwprintf, vfwprintf, vswprintf
|