01.06.2017, 12:44
Hi,
When i start to compile, compiler instantly crashes.. What should i do?
When i start to compile, compiler instantly crashes.. What should i do?
stock isNumeric( string[ ] )
{
for( new i = 0, j = strlen( string ); i < j; i ++ )
{
if( string[ i ] > '9' || string[ i ] < '0' )
return 0;
}
return 1;
}