6_7_9_02_array_brace.c (80B)
1 int test_main(void) { 2 int a[3] = {10, 20, 12}; 3 return a[0] + a[1] + a[2]; 4 }