C Programming in c language course Unit 3( Control constructs ) part 1 #subscribe #new #coding C भाषा में प्रोग्रामिंग Programming in c language इकाई 3 नियंत्रण रचना ( Control constructs) part 1 website link https://jamliya-computer-centre.teachmore.com/courses/37294-computer-fundamental-and-information-technology?btn_src=course_editor_preview (अ) if कथन से क्या समझते हैं ? एक उदाहरण दें l उत्तर - if कथन ( the if statement) : कथनों के निष्पादन ( execution) के प्रवाह को नियंत्रित करने के लिए if कथन का प्रयोग किया जाता है l if कथन एक दो - मार्गी निर्णय ( two way decision) कथन है l इसका उपयोग व्यंजक के साथ संयुक्त करने में किया जाता है l इस कथन का रूप निम्न है : If ( प्रतिबंध का परीक्षण) If को हमेशा कोष्ठक (parentheses) के युग्म से घिरा होना चाहिए l यदि प्रतिबंध सत्य न हो , तो कथन प्रदर्शित नहीं होता है l if कथन का व्यापक रूप निम्न है : If ( प्रतिबंध का परीक्षण) { कथन विभाग ; } अगला कथन ; कथन विभाग कथनों का समूह हो सकता है या एक एकल कथन हो सकता है l यदि प्रतिबंध सत्य है, तो कथन व...