Added pta.c

This commit is contained in:
anon 2024-03-10 15:57:36 +01:00
parent a5a3c63b1f
commit d32d9a5d8c

8
pta.c Normal file
View File

@ -0,0 +1,8 @@
// @COMPILECMD gcc $@ -o $*.out
signed main(){
long a[] = {10, 11, 12};
long * b = a;
++b;
return *b;
}