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

11 lines
146 B
C
Raw Normal View History

2023-09-26 16:05:15 +00:00
# define NDEBUG
#include <stdio.h>
# include <assert.h>
int main()
{
int x = 7;
assert (x==5);
printf("x = %d\n", x);
return 0;
}