RosettaCodeData/Task/Assertions/C++/assertions.cpp
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

10 lines
269 B
C++

#include <cassert> // assert.h also works
int main()
{
int a;
// ... input or change a here
assert(a == 42); // Aborts program if a is not 42, unless the NDEBUG macro was defined
// when including <cassert>, in which case it has no effect
}