1// There are 2 loops in ++ :
2
3while(1==1){ }
4// | | |
5// | What happens while condition is true
6// |
7// the condition
8
9
10//for loop
11
12for (int i; i < 10; i++){ }
13// |___| |___| |_| |__|
14// | | | |
15// | | | what happens when conditons is true
16// | | what happens each time loop is reapeted
17// | The condition in wich the loop is true
18// a variable declaratoin