Quote:
Originally Posted by YamiKaitou
while(true);
This is a generic question with many answers. Give us more specific details about what you are trying to accomplish
|
i just want to understand when some part of code will give a infinite loop .Well for eg. on this code below, how it might be to give a infinite loop?
PHP Code:
bool:isInMenu(id)
{
for (new a = 0; a < g_mapVoteNum; ++a)
if (id == g_nextName[a])
return true
return false
}
__________________