Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how to write a loop

–4 votes
asked Feb 9, 2020 by yiming666 (90 points)

2 Answers

0 votes
answered Feb 12, 2020 by anonymous
int i=0,x=0;

for(i=0;i<5;i++) x++;
commented Feb 13, 2020 by addii
there are 3 types of loop which are as follows:
1.for loop:- syntax :-for(i=0;i<n;i++)
2.while loop
3.do while loop
0 votes
answered Feb 14, 2020 by Matthew Lee (250 points)
for(int i = 0; i <= 10; i++){

         //code goes here

}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...