system
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 <stdlib.h>
|
||
int system( const char *command ); |
||
Llamadas procesador del entorno host comando con el parámetro del comando. Devoluciones implementación valor definido (por lo general el valor que devuelve el programa invocado) .
Original:
Calls the host environment's command processor with command parameter. Returns implementation-defined value (usually the value that the invoked program returns).
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.
Si el comando es NULL puntero, comprueba si tiene un entorno de acogida procesador de comandos y devuelve un valor distinto de cero sólo si el procesador de comandos existe .
Original:
If command is NULL pointer, checks if host environment has a command processor and returns nonzero value only if it the command processor exists.
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
command | - | cadena de caracteres que identifica el comando que se ejecuta en el procesador de comandos. Si puntero NULL se da, procesador de comandos se comprueba la existencia
Original: character string identifying the command to be run in the command processor. If NULL pointer is given, command processor is checked for existence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
Aplicación valor definido. Si
command
es NULL valor vuelve distinto de cero sólo si el procesador de comandos existe .Original:
Implementation-defined value. If
command
is NULL returns nonzero value only if command processor exists.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
Documentación de C++ para system
|