EXIT_SUCCESS, EXIT_FAILURE
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> | ||
#define EXIT_SUCCESS /*implementation defined*/ | ||
#define EXIT_FAILURE /*implementation defined*/ | ||
Le macro
EXIT_SUCCESS
e EXIT_FAILURE
espandersi in un'espressione integrante e indicano lo stato di esecuzione del programma.Original:
The
EXIT_SUCCESS
and EXIT_FAILURE
macros expand into an integral expression and indicate program execution status.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.
Constant Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | Explanation |
EXIT_SUCCESS | corretta esecuzione di un programma Original: successful execution of a program The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
EXIT_FAILURE | mancata esecuzione di un programma Original: unsuccessful execution of a program The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica]Vedi anche
C++ documentation for EXIT_SUCCESS, EXIT_FAILURE |