int array[] = {1, 2, 3, 4, 5};
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);
}On Saturday, Aug 30, 2003, at 15:19 America/New_York, Rasmus Lerdorf wrote:
It was based on the for construct from C and works exactly the same way.
-- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php
