C++ Programming/Code/Standard C Library/Functions/abort
From Wikibooks, the open-content textbooks collection
[edit] abort
| Syntax |
#include <cstdlib> void abort( void ); |
The function abort() terminates the current program. Depending on the implementation, the return value can indicate failure.

