Switch Statement In C In Hindi/ Switch Statement हिंदी में|
हेलो Friends, इस ब्लॉग पोस्ट(Switch Statement In C In Hindi) में मैं आपको Switch Statement के बारे में बताने वाला हूँ |
Switch statement(Switch Statement In C In Hindi) का use एक साथ एक से अधिक condition टेस्ट करने के लिए किया जाता है |
तथा condition के true या false होने पर अलग अलग result display होते है |Switch Statement In C In Hindi|
Syntax:
Switch(expression)
{
case 1:
block 1;
break;
case 2:
block 2;
break;
default:
default block;
break;
}
next statement
Program to show the use of Switch statement|Switch Statement In C In Hindi!
#include<stdio.h>
#include<conio.h>
main()
{
float x, y, z;
char c;
printf("enter any two number\n");
scanf("%f%f", &x, &y);
printf("\n1 - addition");
printf("\n2 - subtraction");
printf("\n3 - multiplication");
printf("\n4 - division");
printf("\n enter your choice 1-4:");
c= getchar();
switch(c){
case1:
z= x+y;
printf("result = %f", &z);
break;
case2:
z = x-y;
printf("result = %f", &z);
case3:
z = x*y;
printf("result = %f", &z);
case4:
z = x/y;
printf("%f", &z);
default;
printf("your choice is not correct\n");
}}
You can also go through a few more amazing blog links related to C/C++:
Problems of procedure-oriented language in Hindi…
This Pointer In C++ In Hindi…
how to learn c language easily…
C Language Interview Question In Hindi…
Looping In C In Hindi…
Switch Statement In C In Hindi…
IF Statement In C In Hindi…
IF-Else Statement In C In Hindi…
Nested If-Else Statement In C In Hindi…
Top to bottom vs Bottom-up programming approach in Hindi…
Quick Q&A:
What is the switch statement in C? C में switch statement क्या होता है?
C में switch statement जो है वो if -else -if ladder statement का एक alternative होता है |
और इस switch statement की मदद से अलग अलग conditions अथवा पॉसिबिलिट्य के लिए operation perform कर सकते है |
और यह सब हम एक switch variable के माध्यम से कर सकते है |
What is a switch statement with an example in C? C में switch statement क्या होता है example के साथ समझाइये?
Switch statement की मदद से हम कई सारे डिशंस में से एक dicision को सीलेक्ट कर सकते है |
Switch statement में कोई integer अथवा character constant value की एक लिस्ट में test किया जाता है |
और जब कोई match मिलता है तो फिर तो उस value से related statements executed होते है |
Why is switch used in C? C में Switch statement का उपयोग क्यों किया जाता है?
Actually में हम Switch case statement का उपयोग कई सारी conditions में एक condition को execute करने के लिए करते है |
और यह कुछ if -else -if ladder की तरह ही होता है |
Switch statement जो है एक तो conditional -based cases को रखता है और एक होता है default case |
Is a switch statement a loop? क्या Switch statement एक loop होता है?
एक Switch statement जो है वो एक loop structure होता है |
इसके अंतर्गत एक प्रोग्राम जो है वो कई सारे codes में से उस code को रन करता है जिसके साथ condition मैच हो जाती है |
What is a switch and break statement? Switch और break statement क्या होते है?
इस break keyword का उपयोग हम Switch case के साथ करते है |
इसका उपयोग हर case block के अंत में होता है |
और जब भी matching case execute हो जाता है तो इस break statement की मदद से program control loop के बहार आ जाता है |
यह break statement optional होता है |
What are the advantages of the switch statement? Switch statement के क्या क्या advantages होते है ?
Switch statement के कुछ benefits निम्नलिखित है:
If -else statement की अपेक्षा Switch statement को read करना ज्यादा आसान होता है |
Switch statement जो है वो If -else -If स्टेटमेण्ट के साथ आने वाली कठनाई को overcome करता है |
क्योकि If -else -If statement की deep nesting में कोड complexity बढ़ जाती है |
Switch statement की एक fixed depth रहती है |
Is a switch statement Boolean? क्या Switch statement boolean होता है ?
Switch statement में use होने वाले expression को जरूर ही या तो integral होना चाहिए या फिर boolean expression |
या फिर यह किसी class टाइप का हो सकता है जिसमे एक सिंगल conversion फंक्शन हो इंटीग्रल अथवा बूलियन values के लिए |
और अगर Switch statement में कोई भी expression पास नहीं किया जाता है तब default वैल्यू ही true हो जाती है |
एक Switch statement में आप कितने भी case रख सकते है |
इस ब्लॉग(Switch Statement In C In Hindi) को लेकर आपके मन में कोई भी प्रश्न है तो आप हमें इस पते a5theorys@gmail.com पर ईमेल लिख सकते है|
आशा करता हूँ, कि आपने इस पोस्ट ‘Switch Statement In C In Hindi.’ को खूब एन्जॉय किया होगा|
आप स्वतंत्रता पूर्वक अपना बहुमूल्य फीडबैक और कमेंट यहाँ पर दे सकते है|
आपका समय शुभ हो|