Bool isIdenfer ()
{
Char TOKEN [120].
If (1)
{
int i=0;
TOKEN [0]=sym;
Fin. Get (sym);
While (sym!=' ')
{
TOKEN [i++]=sym;
Fin. Get (sym);
}
TOKEN [+ + I]='\ 0';
Fout & lt; <"IDENFER" & lt;
return true;
}
return false;
}
Suggested I write errors, run the debug, found that because fin. The get function repeatedly read the first letter of the file, the loop can't jump out of bounds, can you tell me why