Programming Languages C# Subjective
Mar 13, 2013

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

Detailed Explanation

for ($count = 10; $count >= 1; $count--)
 
{
 
print "$count ";
 
}

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback