Espacios de nombres
Variantes
Acciones

system

De cppreference.com
< c‎ | program
 
 
Servicios públicos de apoyo a programas
Programa terminación
Original:
Program termination
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
La comunicación con el medio ambiente
Original:
Communicating with the environment
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
system
Señales
Original:
Signals
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Tipos de señal
Original:
Signal types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
No locales saltos
Original:
Non-local jumps
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Tipos
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
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.
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.

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.

[editar] Ejemplo

[editar] Ver también