13 lines
154 B
C++
13 lines
154 B
C++
|
|
||
|
|
||
|
void f()
|
||
|
{
|
||
|
for (int i = 0; i < j; i++)
|
||
|
{
|
||
|
char *str = strdup("hello");
|
||
|
if (condition)
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
|