A do while loop is an exit control loop which has only condition part of loop structure, initialization part is written before do while loop as statement and updation is written inside loop as last statement. loop statements are executed til condition is true. when condition is fail then program control will be shifted to next instruction of program. do while loop is more effective when user wants to execute loop statements at least one time whether condition is right or wrong.do while loop is terminated by semicolon(;). it is rarely used in programs.
डू व्हाइल लूप एक एग्जिट कंट्रोल लूप है इसमें लूप का केवल कंडीशन भाग रखा जाता है जो अंत में होता है। इनिशियलाइजेशन लूप के पूर्व एवं अपडेशन लूप के अंतर्गत अंतिम स्टेटमेंट के रूप में किया जाता है। जब तक कंडीशन सत्य होती है लूप के स्टेटमेंट रन होते रहते है अन्यथा प्रोग्राम कंट्रोल अगले स्टेटमेंट पर पहुँच जाता है। इसका प्रयोग तब अत्यधिक प्रभावी होता है जब प्रोग्रामर कम से कम एक बार लूप स्टेटमेंट को रन करना चाहता है भले ही कंडीशन सत्य हो अथवा असत्य । डू व्हाइल लूप को ; अर्धविराम से समाप्त किया जाता है। इस लूप का प्रयोग बहुत कम किया जाता है।
Syntax:-
initialization;
.................
do{
statements;
.................
.................
updation;
}while(condition);
No comments:
Post a Comment