continue keyword or continue statement

In C programming language the continue statement skips below code of current block and shifts program control to the next iteration of the loop. 
सी प्रोग्रामिंग लैंग्वेज में कंटिन्यू स्टेटमेंट का प्रयोग, वर्तमान एक्सीक्यूशन को रोक कर, प्रोग्राम कंट्रोल को अगले चरण के  प्रारंभ पर भेजने के लिए किया जाता है। 
For the for loop, continue statement causes the updation part of the loop to execute. 
फॉर लूप में यह प्रोग्राम कंट्रोल को लूप के अपडेशन भाग पर भेजता है। जबकि  
For the while and do...while loops, continue statement causes the program control to shift to the condition part of the loop.
व्हाइल लूप एवं डू व्हाइल लूप में यह प्रोग्राम कंट्रोल को लूप के कंडीशन भाग पर भेजता है। 

Syntax:-   continue;

Comments

Popular posts from this blog

C Language Topics in Hindi and English

Top High-Paying Tech Skills to Learn in 2025

Advanced C Programming Language IMP Questions for BSc/BA/BCom/BCA/BE/BTech/MSc/MCA (CS/IT) Students