do while (true); // Getting rid of warnings / Alternative?
#5

Why would you do do-while? Since while doesn't have a statement for which it shouldn't run there is no need to "do" something first right?

pawn Код:
while(1)
{
        ...
}
Does exactly the same as

pawn Код:
do
{
        ...
} while(1)
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)