Added 'C_C++/self_pointer.c'

This commit is contained in:
anon 2024-07-22 19:39:19 +02:00
parent 37e90b37e7
commit bf8e71d9b2

6
C_C++/self_pointer.c Normal file
View File

@ -0,0 +1,6 @@
// @BAKE gcc $@ -o $*.out -ggdb
signed main() {
void * the_void = &the_void;
return *(int*)the_void;
}