2024-07-22 19:37:02 +02:00

9 lines
109 B
C

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