$birds = array('a', 'b', 'c', 'd'); $limit = count($birds); for($i = 0; $i < $limit; $i++) printf("(%d) %s.\n", $i, ucfirst($birds[$i])); ?>
(%d) %s.