Added c_old_argument_notation.c

This commit is contained in:
anon 2024-03-10 15:57:35 +01:00
parent 00843ff8b6
commit fd5ef1084a

10
c_old_argument_notation.c Normal file
View File

@ -0,0 +1,10 @@
//gcc c_old_argument_notation.c -o c_old_argument_notation.out -O0 -ggdb
void f(c)
char *c;
{
void* b = (void*)c;
}
signed main(){
f("aaa");
}