Exit Application


	if (some_value == 1)
	{
		exit(EXIT_FAILURE);
	}

 

Exiting With Success


	exit(EXIT_SUCCESS);