tests/C_C++/pointer_array.c
2024-12-10 20:40:17 +01:00

6 lines
79 B
C

// @BAKE gcc $@ -o $*
signed main() {
char * c[4];
return sizeof(c);
}