Computer Science, asked by MoumitaSarkar, 1 year ago

What are the different ways of generate a loop

Answers

Answered by rakeshmohata
15
The different types of loop u can do in C. Programming are from
1) for loop:- for(conditions) {what to do in loop} loop
2)while loop :- while{what to do in the loop} condition;loop
3)do while loop:- do{what to do in loop} while(condition) ;loop.
.
Hope I helped u.
Answered by puneetparmesh
1

Answer:

the different ways of generate a loop are -

1. FOR-NEXT Loop

2. WHILE - WEND Loop

3. DO WHILE ................... Loop

4.FOR-NEXT with Step Value

Similar questions