Module 8 of 20
Loops like for, while, and do-while are used to execute code repeatedly.
Loops का उपयोग code को बार-बार चलाने के लिए किया जाता है।
#include <stdio.h> int main() { printf("Welcome to Core Java - Loops"); return 0; }