Computer Science, asked by Aslam0786, 3 months ago

12) In Which of the following
expression of For loop we
initialize the variable? *​

Answers

Answered by pea4518977
0

Answer:

The for (in the glossary) statement provides a compact way to iterate over a range of values. The for statement has a general form and, as of 5.0, an enhanced form that you can use when performing simple iterations over arrays and collections. The general form of the for statement can be expressed like this:

for (initialization; termination; increment) {

   statement(s)

}

Explanation:

Similar questions