#include <stdlib.h> void exit(int exit_code);
This function exits the program, returning exit_code to the
calling process. Before exiting, all open files are closed and all
atexit
and on_exit
requests are processed.
This function does not return.
ANSI, POSIX
if (argc < 4) { print_usage(); exit(1); }
Go to the first, previous, next, last section, table of contents.