Added test.c

This commit is contained in:
anon
2024-03-10 15:57:36 +01:00
parent 50386e11cc
commit 74ec947dd7

9
test.c Normal file
View File

@ -0,0 +1,9 @@
main(){
int i = 10;
int h;
do{
h = i - 1;
}while(i = h);
void * v = malloc(100);
free(v);
}