renamed C folder

This commit is contained in:
anon
2024-07-22 19:37:02 +02:00
parent 6aa339a50d
commit d978a20df8
87 changed files with 0 additions and 0 deletions

9
C_C++/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);
}