04.09.2009, 08:15
Hi,
how can i check, if the playersname has a number?
how can i check, if the playersname has a number?
for (new pos; name[pos] && pos < MAX_PLAYER_NAME; pos++)
{
if ('0' <= name[pos] <= '9')
{
// this symbol is a digit
break;
}
}