6_4_5_02_string_concat_init.c (103B)
1 int test_main(void) { 2 char s[] = 3 "hi" 4 "lo"; 5 return s[0] + s[1] + s[2] + s[3] + s[4]; 6 }