system
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. |
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.
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.
You can help to correct and verify the translation. Click here for instructions.
Indice |
[modifica] 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. |
[modifica] 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.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
C++ documentation for system
|