for (int i = 0; i < 5; i++)
{
        int num = array[i];
        printf("%d", num);
        for (int i = 0; i < 5; i++)
                printf("%d", i * num);
}

I'll try to explain it in your own language.


no declarations inside for() in C ===> your example ===> *crap*

loose typing ===> no declarations ===> 'masking out' _IMPOSSIBLE_

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to