while loop

A while loop is an entry control loop which has only condition part of loop structure, initialization  part is written before 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. while loop is more effective when user doesn't  know that how many times loop will be executed. while loop is a simple loop structure.

व्हाइल लूप एक एंट्री कंट्रोल लूप है इसमें लूप का केवल कंडीशन भाग रखा जाता है, इनिशियलाइजेशन लूप के पूर्व एवं अपडेशन लूप के अंतर्गत अंतिम स्टेटमेंट के रूप में किया जाता हैजब तक कंडीशन सत्य होती है लूप के स्टेटमेंट रन होते रहते है अन्यथा प्रोग्राम कंट्रोल अगले स्टेटमेंट पर पहुँच जाता है इसका प्रयोग तब अत्यधिक प्रभावी होता है जब प्रोग्रामर को यह पहले से ज्ञात न हो की लूप स्टेटमेंट को कितनी बार रन किया जायेगा। व्हाइल लूप एक सिंपल लूप है

Syntax:-
initialization;
.................
while(condition){
statements;
.................
.................
updation;
}

No comments:

Post a Comment