6_8_03_for_sum.c (89B)
1 int test_main(void) { 2 int s = 0; 3 for (int i = 1; i <= 10; i++) s += i; 4 return s; 5 }