going through a code sample I came around this syntax new to me which I don't understand..
for ( ;; ) what does the double semicolon means in this for loop?
thanks
Code:
for (;;)
{
c = *pstrstr;
if (c >= '0' && c <= '9')c -= '0';
//.......
}
thanks