EXIT_SUCCESS, EXIT_FAILURE

Da cppreference.com.
< c‎ | program

 
 
Programma di supporto utilità
Programma di terminazione
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.
atexit
at_quick_exit(C++11)
EXIT_SUCCESS
EXIT_FAILURE
Comunicante con l'ambiente
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.
Segnali
Original:
Signals
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Tipi di segnale
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 locali salti
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
Tipi
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
 
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.
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
close