int a ()
{
int a = 0;
goto Gotob;
Gotoa:
return a;
}

Void b ()
{
int a;
Gotob:
a+= 3;
goto Gotoa;
}

이런식으로