This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Appendix1/DebugAssertion/DebugAssertion.c
2023-09-26 17:05:15 +01:00

11 lines
146 B
C

# define NDEBUG
#include <stdio.h>
# include <assert.h>
int main()
{
int x = 7;
assert (x==5);
printf("x = %d\n", x);
return 0;
}