exit - terminate program
Standard C Library (libc, -lc)
#include <stdlib.h> int exit(int code);
exit causes the program to exit. It calls internal cleanup routines, and then performs the actual exit by calling _exit.
exit does not return.