1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
 
int foo()
{
  for (int j= 0; j < 23; j++)
    putchar('a');
}
int main()
{
  foo();
}
cs


gcc나 clang으로 컴파일은됨

근데 루한루프돔 ㅋㅋ