while (true)
{
while (true)
{
int h = ok_group_join(gr);
if (h == 0)
ok_group_post(gr);
else if (h == -1)
{
//How can I go to first while cycle?
}
I wrote a comment in my code, how can I return from there to first while cycle?
The
breakkeyword will let you out.