10.11.2010, 14:24
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?
Does exactly the same as
pawn Код:
while(1)
{
...
}
pawn Код:
do
{
...
} while(1)