You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Si bien no es completamente incorrecto hacerlo de este modo, se estila poner la validación al comienzo y finalizar el programa si no pasa la validación:
if (esta_todo_bien!= true)
{
/* es un error */returnEXIT_FAILURE
}
/* hacer algo */
en lugar de
if (esta_todo_bien== true)
{
/* hacer algo */
} else {
/* es un error */
}
The text was updated successfully, but these errors were encountered:
9511ejentregar/24.c
Lines 57 to 62 in b1083bd
Si bien no es completamente incorrecto hacerlo de este modo, se estila poner la validación al comienzo y finalizar el programa si no pasa la validación:
en lugar de
The text was updated successfully, but these errors were encountered: