CPlusPlusThings/basic_content/assert/assert.c
Light-City 8edbbbc5a2 update
2019-11-05 16:56:07 +08:00

19 lines
309 B
C

#include <stdio.h>
#include <assert.h>
int main()
{
int x = 7;
/* Some big code in between and let's say x
* is accidentally changed to 9 */
x = 9;
// Programmer assumes x to be 7 in rest of the code
assert(x==7);
/* Rest of the code */
return 0;
}