Computer Science, asked by janvisharma3973, 10 months ago

When we choose for loop and how it is deffernt from while loop

Answers

Answered by sanchari46
0
Holla Mate actually for and while loop are very much similar in action. But the main thing is in for loop all variable initialisation ,condition and increment occurs at the same time so we can use it during patterns,etc,while, in while loop it occurs in different time.

Hope it helps ❤❤❤❤
Answered by mn121
1

You can choose any loop which you feel easy... There is no restriction on using for loop....

Difference between for loop and while loop is:

For loop-

(i) fixed loop ( means how the loop will iterate is known.)

While loop -

(i) Unfixed loop ( iteration is not known. )

Similar questions