--- In [email protected], "John Matthews" <[EMAIL PROTECTED]> wrote:
> It would be better to use something like:
> 
>     char *c;

...or, if you haven't started using pointers yet:

    int i, len = strlen(w);

    for (i = 0; i < len; i++)
    ...

Reply via email to