Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: slight change to main/return CS

...

Code Block
bgColor#ccccff
int main(int argc, char **argv) {
  /* ... */
  return statusif (/* something really bad happened */) {
    return EXIT_FAILURE;
  }
  /* ... */
  return EXIT_SUCCESS;
}

Wiki Markup
\[[ISO/IEC 9899-1999|AA. C References#ISO/IEC 9899-1999]\] C99 Section 5.1.2.2.3 has this to say about returning from {{main()}}:

...