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

1
C_C++/linking/h.c Normal file
View File

@ -0,0 +1 @@
int h = 10;

1
C_C++/linking/i.c Normal file
View File

@ -0,0 +1 @@
int i = 10;

7
C_C++/linking/main.c Normal file
View File

@ -0,0 +1,7 @@
// @COMPILECMD gcc -shared i.c -o i.so; gcc -shared h.c -o h.so; gcc $@ i.so h.so
extern int i;
extern int h;
signed main(){
return h;
}