Difference between Iteration & loop?
Answers
Answered by
2
Answer:
Iteration and loop are co related concepts.
Iteration means how many time you want to iterate the statement.
In programming, for iteration loops are given such, as for and while loop.
Explanation:
eg->
for(i=1;i<10;i++)
here the eg the for loop will iterate 10 times....
Similar questions