6_5_29_compound_literal.c (74B)
1 int test_main(void) { 2 int* p = (int[]){10, 32}; 3 return p[0] + p[1]; 4 }