EXIT_SUCCESS, EXIT_FAILURE
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <stdlib.h>
|
||
#define EXIT_SUCCESS /*implementation defined*/ |
||
#define EXIT_FAILURE /*implementation defined*/ |
||
Las macros
EXIT_SUCCESS y EXIT_FAILURE expandirse en una expresión integral e indican el estado de ejecución del programa .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
|
ejecución con éxito de un programa
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
|
ejecución sin éxito de un programa
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. |
Ver también
Documentación de C++ para EXIT_SUCCESS, EXIT_FAILURE
|