11 lines
113 B
C
Raw Normal View History

void bar();
void foo() {
for (int i = 0; i < 5; ++i)
bar();
for (int i = 0; i < 11; ++i)
bar();
}