Computer Science, asked by mrinald860, 1 month ago

) It is the third expression of the for loop that
updates the variable number each time the loop
is executed. What is it called?
Lood​

Answers

Answered by tejaswaroopbattula
6

Answer:

for(int I = 1;I<=10;I++)

Explanation:

in the above one the third one is called increment

the second one is called condition

the first one is called initialisation

Similar questions