:: Re: [DNG] Icerbergs aren't small ju…
Página Principal
Delete this message
Reply to this message
Autor: Didier Kryn
Data:  
Para: dng
Assunto: Re: [DNG] Icerbergs aren't small just because they're mostly underwater
Le 25/01/2016 13:47, Didier Kryn a écrit :
>
>     while (*r)
>       {
>         if (*r == '/')
>     {
>            r++;
>            n = r;
>         }
>       }


     It's not even that. A for loop would do it:


     for (  ;  *r;  r++ )  n = r+1;