0 votes
in Perl by

Which statement has an initialization, condition check and increment expressions in its body? Write a syntax to use that statement.

1 Answer

0 votes
by
for ($count = 10; $count >= 1; $count--)

{

print "$count ";

}
...