Espaces de noms
Variantes
Actions

std::system

De cppreference.com
< cpp‎ | utility‎ | program

 
 
 
Services d'appui aux programmes
La fin du programme
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.
abort
exit
quick_exit (C++11)
_Exit (C++11)
Communiquer avec l'environnement
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
Signaux
Original:
Signals
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Types de signaux
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.
SIGABRT
SIGFPE
SIGILL
SIGINT
SIGSEGV
SIGTERM
Non-locales sauts
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.
setjmp
longjmp
Types
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
jmp_buf
 
Déclaré dans l'en-tête <cstdlib>
int system(constchar*command );
Appels processeur de commandes de l'environnement hôte avec le paramètre de commande. Retours définie par l'implémentation valeur (la valeur renvoyée 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.
Si la commande est NULL pointeur, vérifie si l'environnement d'accueil dispose d'un processeur de commande et retourne une valeur différente de zéro 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.

Sommaire

[modifier]Paramètres

command -
chaîne de caractères identifiant la commande à exécuter dans le processeur de commande. Si le pointeur NULL est donnée, le processeur de commande est cochée 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.

[modifier]Retourne la valeur

Mise en oeuvre valeur définie. Si command est NULL retours valeur différente de zéro 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.

[modifier]Exemple

[modifier]Voir aussi

C documentation for system
close