ELSE IF STATEMENT IN C PROGRAMMING:-
The else if Statement:-
दोस्तों अगले पाठ में आपने C Programming के if..else statement के बारे में पढ़ा आज के पाठ में हम else if Statement के बारे में पढ़ेंगे |
else if Statement भी लगभग else if Statement के तरह ही है लेकिन else if Statement में हमे तीन condition मिल जाते है | मतलब की else if Statement में हमे if और else के साथ else if condition भी मिल जाता है जिसके कारण हम इसके मदद से बहुत सारे condition को जाँच सकते है |
SYNTAX OF else if Statement :-
if (condition1) { block of code to be executed if condition1 is true } else if (condition2) { block of code to be executed if the condition1 is false and condition2 is true } else { block of code to be executed if the condition1 is false and condition2 is false }
एक उदाहरण के मदद से आप else if Statement को बेहतर तरीके से समझ पाएंगे |
Example 1 :- Example Of else if Statement in C Programming
#include <stdio.h> int main() { int Totalmarks; //Imagine you have 6 subjects and Grand total is 600 printf("Please Enter your Total Marks\n" ); scanf( "%d", &Totalmarks ); if (Totalmarks >= 540) { printf("You are eligible for Full Scholarship\n"); printf("Congratulations\n"); } else if (Totalmarks >= 480) { printf("You are eligible for 50 Percent Scholarship\n"); printf("Congratulations\n"); } else if (Totalmarks >= 400) { printf("You are eligible for 10 Percent Scholarship\n"); printf("Congratulations\n"); } else { printf("You are Not eligible for Scholarship\n"); printf("We are really Sorry for You\n"); } }
ऊपर के C Programming Example ,में अगर user 400 से छोटा कोई Number Enter करता है तो You are Not eligible for Scholarship
We are really Sorry for You . message Output में दिखेगा |
और अगर वो 400 से बड़ा कोई Number Enter करता है तो You are eligible for Scholarship . message Output में दिखेगा | और उसे कितना Scholarship मिलना है ये उस Number पर निर्भर करता है जिसे उसने Enter किया है |
दोस्तों else if Statement का उपयोग करना बहुत ही आसान है | मुझे उम्मीद है की आप को इसे समझने में कोई परेशानी नहीं होगा | आप खुद ही कुछ C Program बनाकर else if Statement का Practice करें और अपने concept को और clear करें |
vikas saini
कोई टिप्पणी नहीं:
एक टिप्पणी भेजें