extern void print(int i); void func(int i) { int j; j = 123; i = i * j; do { print(i); if (i > 5) { j = j + 1; } else { break; } } while (j < 235); }