std::system
De cppreference.com
[] |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody>| Dclar dans l'en-tte <cstdlib>
|
||
int system( const char *command ); |
||
Appels processeur de commandes de l'environnement hte avec le paramtre de commande. Retours dfinie par l'implmentation valeur (la valeur renvoye par le programme invoqu) .
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 la commande est NULL pointeur, vrifie si l'environnement d'accueil dispose d'un processeur de commande et retourne une valeur diffrente de zro uniquement si le processeur de commande existe .
Original:
If command is NULL pointer, checks if host environment has a command processor and returns nonzero value only if 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.
Paramtres
| command | - | chane de caractres identifiant la commande excuter dans le processeur de commande. Si le pointeur NULL est donne, le processeur de commande est coche pour l'existence
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. |
Retourne la valeur
Mise en oeuvre valeur dfinie. Si
command est NULL retours valeur diffrente de zro uniquement si le processeur de commande 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.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
C documentation for system
|