RosettaCodeData/Task/Assertions/C/assertions-1.c
Ingy döt Net 86c034bb8b new files
2013-04-10 12:38:42 -07:00

9 lines
189 B
C

#include <assert.h>
int main(){
int a;
/* ...input or change a here */
assert(a == 42); /* aborts program when a is not 42, unless the NDEBUG macro was defined */
return 0;
}