Moved cond.c to folder LC21

This commit is contained in:
Louise Brown
2023-09-26 17:05:15 +01:00
parent fefda4652a
commit 3ed2a4276c
4 changed files with 74 additions and 0 deletions

View File

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