1. While Loop

While Loop में variable को initialize करना जरुरी है
अगर While Loop को repeat करना हो तो, increment/decrement operator का इस्तेमाल किया जाता है
जबतक While Loop में Condition true होती तब तक repeat होता रहता है |
  while(i<10) {
printf("%d",i); // statement of while loop
i++; //increment operator
}

2. Do While Loop

जबतक Do-While Loop में Condition true होती तब तक repeat होता रहता है |
Do-While की खासियत ये है कि, अगर condition false भी हो तो ये एक statement को output में print करता है |
 do {
printf("%d",i);// statement of do while loop
i++; //increment operator
} while(i<10);

}

3. For Loop

For Loop को सिर्फ Variable Declaration कि जरुरत होती है | ये statement छोड़के सभी काम अपने अंदर ही करता है |
जबतक While Loop में Condition true होती तब तक repeat होता रहता है |
for( i=0; i<10; i++){
     printf("%d\n",i); // statement of while loop
  }

Nested Loop

Nested Loop ये loop का कोई प्रकार नहीं है |
Nested Loop में एक loop में दूसरा loop लिया जाता है |
Nested Loop While, Do-While, For Loop के होते है |