330-fs-compound-array.c (82B)
1 int *p = (int[]){10,20,30,40}; 2 int main(void) { return p[0]+p[1]+p[2]+p[3]-100; }