◐ Shell
clean mode source ↗

system - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

Elemento definito nell'header

<stdlib.h>

int system( const char *command );

Chiama processore dei comandi dell'ambiente host con il parametro di comando. Restituisce l'attuazione valore definito (di solito il valore restituito dal programma richiamato).

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.

Se il comando è NULL puntatore, controlla se l'ambiente host dispone di un processore di comando e restituisce un valore diverso da zero solo se il processore dei comandi esiste.

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.

Parametri

command -

stringa di caratteri che identifica il comando da eseguire nel processore dei comandi. Se il puntatore NULL è dato, processore dei comandi viene controllato per l'esistenza

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.

Valore di ritorno

Attuazione valore definito. Se command è NULL restituisce valore diverso da zero solo se il processore di comando esiste.

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.

Esempio

Vedi anche