How to use switch case with string in c | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to use switch case with string in c

24th Feb 2020, 1:33 PM
Anudeep P Hosur
18 Answers
24th Feb 2020, 1:37 PM
Gordon
Gordon - avatar
+ 3
https://code.sololearn.com/c2dbDGmVqdS5/?ref=app Aryaman Mishra 🇮🇳 switch isn't limited to int.
24th Feb 2020, 2:34 PM
Gordon
Gordon - avatar
+ 2
Can't use switch on a string as it is not an integral data type.
26th Feb 2020, 3:09 AM
Sonic
Sonic - avatar
+ 1
See if u are taking arguement inside switch parenthesis, they have to be constant or constant expression. In your code you have declared num to abc and in cases you have written 1, 2, etc. So your code compares num=1, which is not valid as you are comparing char data type with integer data type. That's why it shifts to default case. Hope it helps
24th Feb 2020, 2:02 PM
Aryaman Mishra 🇮🇳
Aryaman Mishra 🇮🇳 - avatar
+ 1
The case label should reduce to an integer. You can take value of num as an integer and then proceed.
24th Feb 2020, 2:26 PM
Aryaman Mishra 🇮🇳
Aryaman Mishra 🇮🇳 - avatar
+ 1
I know it works for char but for string too?
24th Feb 2020, 2:38 PM
Aryaman Mishra 🇮🇳
Aryaman Mishra 🇮🇳 - avatar
24th Feb 2020, 2:41 PM
Gordon
Gordon - avatar
+ 1
Yes I was saying that only. But in this question sandeep has initialized num to abc which is not a character. Thanks for the code though🙂
24th Feb 2020, 2:43 PM
Aryaman Mishra 🇮🇳
Aryaman Mishra 🇮🇳 - avatar
+ 1
Yes thanks lot
24th Feb 2020, 3:00 PM
Anudeep P Hosur
0
Give some example
24th Feb 2020, 1:35 PM
Aryaman Mishra 🇮🇳
Aryaman Mishra 🇮🇳 - avatar
24th Feb 2020, 1:51 PM
Anudeep P Hosur
0
Check above code am getting wrong output for this
24th Feb 2020, 1:52 PM
Anudeep P Hosur
0
Can I get the correct code
24th Feb 2020, 2:18 PM
Anudeep P Hosur
0
Anudeep P Hosur Please make Aryaman's answer as best, because his answer is relevant, specific and accurate. Thanks.
24th Feb 2020, 2:46 PM
Gordon
Gordon - avatar
0
I hope anudeep has got his answer.
24th Feb 2020, 2:48 PM
Aryaman Mishra 🇮🇳
Aryaman Mishra 🇮🇳 - avatar
0
syntax: switch(statement) { case condition1: //statement; break; case condition2: // statement; break; ........ default: //statement } Here case work same as if, else if while default work as else statement. Important thing is don't forget to add break statement after every case or you won't get desired output as beginner.
25th Feb 2020, 6:01 AM
Shivam Akhouri
Shivam Akhouri - avatar
0
The overall code is same as integer or any other data type Just the different is while placing string in condition just wrap it with double quote. For example Switch (statement) Case "condition1": //statement Break; Case "condition2"://statement Break; And so on
25th Feb 2020, 6:41 PM
sibu dhital
sibu dhital - avatar
0
Anudeep P Hosur I think it is better if you use if-else... Here are 3 reasons why, 1) switch statement on takes constant value 2) string is represented as array of char, so it cant be constant 3) even if you pass string, it will just gives you warnings but main problem will occur at case part which wil either takr int or char. And i think it is nearly impossible to assign each string in case an constant value Hope this can help you..... 😊
26th Feb 2020, 2:42 AM
DeWill
DeWill - avatar