C++ Programming/Code/Standard C Library/Functions/assert
Tools
General
Sister projects
In other projects
| Syntax | #include<cassert>assert(exp); |
The assert() macro is used to test for errors. If exp evaluates to zero, assert() writes information to stderr and exits the program. If the macro NDEBUG is defined, the assert() macros will be ignored.