6 lines
62 B
Text
6 lines
62 B
Text
int f() {return 0;}
|
|
|
|
int g() {
|
|
for(; f(); ){}
|
|
return 0;
|
|
}
|