6_6_03_array_size_const.c (89B)
1 int test_main(void) { 2 int a[3 + 4] = {0}; 3 return (int)sizeof a / (int)sizeof a[0]; 4 }