Tagged Questions
2
votes
3answers
66 views
Why aren't we allowed to use even global const qualified variables in switch-case?IBM support portal hints we can
Huh it's getting so muddy.The following IBM Support Portal link seems to suggest that the reason we can't use const qualified variables as real constants is because their life-time is not the same as ...
3
votes
1answer
74 views
Is this a switch statement smell?
I am looking through someone's C code, and discovered something I didn't even know was possible. Inside some of the cases, the switch variable is modified, with the intention that another case is ...
0
votes
5answers
72 views
Initializing in a switch case in C
Is it bad practice to initialize variables inside a specific case of a switch?
I have quite a few variables that is only relevant for one of my cases, and can't seem to find any info on this.
Thanks ...
0
votes
4answers
81 views
Choose of a lot of cases instead of c >= '0' && c <= '9' to 0-9 numbers checking
The following code is part of an intepreter that I'm reading. I'm trying to figure why exactly use this instead of simple c >= '0' && c <= '9'?
switch(ch) {
//...
case '0': case ...
-1
votes
4answers
77 views
While,switch, case statement
I'm using a while, switch, case statement for my menu and when it runs it keeps saying enter choice, I know while(1) creates an infinite loop but is there a way to avoid this?
while(1)
{
...
0
votes
0answers
57 views
Moving through node field point to point coding in C
In the process of making a program that moves through a node field from point X to point Y. I am new to C and I'm having issues with errors in my code. I'm asking for your help to fix these (most ...
0
votes
1answer
41 views
Clang Analyzer false positive or overflow?
Below is the simplification of some code of ours which seems like it demonstrates a bug in the clang analyzer, though it's possible there's a real bug in our code.
typedef enum {
value1 = ...
-2
votes
4answers
77 views
Hexadecimal Value In C++ Switch Statement
Is it possible to perform a switch with a hexadecimal case statement?
for example:
switch (integer) {
case: 1
function();
break;
case: F:
function();
...
3
votes
2answers
82 views
Why is “switch-case” considering a #define'd identifier as constant but not a const-qualified variable?
This program produces the following error:
case label does not reduce to an integer constant|
I simply fail to understand why an explicitly declared constant third_cond,assigned initializer 3,that ...
1
vote
5answers
110 views
Switch statement within while loop in C
Thank you guys for your help. Your guidance helped me better understand what I was doing wrong.
0
votes
3answers
73 views
“Illegal case” when using special symbols in case in c++
I have some problem, when I use special char case in c++. I try use '{' but it's over with error to.
Visual Studio 2010.
Here is my code.
for (int i = 0; i < inputString.length(); i++)
{
...
-5
votes
3answers
84 views
switch case (in C) [duplicate]
we have 4 regions: a b c d
we want to put the numbers in these region.
how to do this using only switch statement:
the number divisible by 10 and divisible by 7 ın region a
the number divisible ...
1
vote
2answers
50 views
C: switch with cases to determine type of output msg (stored in char)
I'm a bit of a newbie but I've spent quite a bit of time trying to understand what I'm doing wrong here..
I'm using Turbo C and some of the time the output message I get is actually a part of the ...
0
votes
2answers
63 views
statement not working in for loop
"The actual issue I am having is that It just stops running after giving out the number of questions. I've corrected the "%d%" to "%d" and its still having that issue"
I'm currently working on a ...
0
votes
2answers
94 views
Why Can't I Use An Array in a Switch Statement in C?
I've written a program that generates 1,000 random numbers in the range of 1-10. What I then want it to do is tell me how many times each number was produced. But, for some reason why I run this ...
3
votes
3answers
70 views
What does switch do if there is no default case?
I have found a following piece of code:
switch(val){
case 0:
// some actions
break;
case 1:
// some actions
break;
case 2:
// some actions
...
-3
votes
4answers
118 views
Using int array for switch case
I am fairly new to C and I am trying to use an int array as option numbers for a switch like this
void totalEntered(float * total, float * inputFigure)
{
*total = *total + *inputFigure;
}
int ...
-1
votes
4answers
83 views
How to write switch statement with “or” logic?
Below, I have created a simple switch statement that works fine. I was wondering how I could change this code so it is switch(c), then case 1, case 2, case 3, default.
Example: if char is 'w' || ...
0
votes
3answers
127 views
Switch with strings
Somehow my switch statement goes through none of my cases, but shouldn't it go in one?
(I am using http://stackoverflow.com/a/4014981/960086 as a reference).
There is no output, and application is ...
1
vote
3answers
84 views
Mingling switch and while in C
This code works for some reason but it does not make sense at all.
#include <stdio.h>
int main(void)
{
switch(1)
{
case 0:
while(1)
{
case 1: ...
-1
votes
3answers
113 views
Why does the switch statement execute a case block even when a match is not found?
switch(1){
case 1: print 1; // prints 1 (as expected)
case 2: print 2; // prints 2 (even though match is not equal?)
case 3: print 3; // prints 3 (even though match is not equal?)
}
I ...
-3
votes
2answers
116 views
C Programming Switch Case [closed]
C Programming
How to change this if else condition to switch case??
if(n >= 10 && n <= 20){price=2.00;}
else if(n > 20){price=3.00;}
else {price=1.00;}
-1
votes
1answer
156 views
Odd behavior with switch statement using C30 and MPLAB X
I am experimenting an strange problem with C30 and MPLAB X, I have this piece of code:
unsigned char mode;
switch(mode){ // Eligo el modo que se envio a traves del UART
...
3
votes
2answers
108 views
Switch statement syntax for same action through different cases
Two constants (1+2) share the same case statement. I don´t want to double the code.
What is the right syntax to do this?
switch (expression) {
case 0:
[self taskA];
...
0
votes
7answers
110 views
Switch Statement with three cases in C. Third Case is not running properly
below is a do-while loop that I coded. When I run it, the first two cases do their job and run perfectly. However. the third case is supposed to quit the program but instead it does nothing and just ...
-2
votes
1answer
87 views
MACRO error when using the switch statement
Hey take a look at the code:
#define SUFFIX(n) (switch(n) \
{ \
...
-3
votes
3answers
99 views
Wrong use of switch statement : the program takes the value it's not supposed to accept [closed]
That is a beginner question to understand where I might be wrong using the switch statement.
The task is as follows:
Write a program that accepts two integer values typed in by the user. Display the
...
0
votes
3answers
83 views
Efficiency of the switch statement
I'm currently writing an implementation of the quicksort algorithm, and I have a question of efficiency, specifically about partitioning the array. The way I'm partitioning the array before sorting ...
1
vote
1answer
73 views
explicit cast in a switch case statement
I have a character pointer named label, and also an enumerator that contains an element named "label". How can I differentiate between them in a case statement?
switch((I_ARG_TYPES) ...
-1
votes
4answers
80 views
Why can't I use a condition as a case in a switch-statement on an int?
I have this code
int a = 0 ;
int b =2;
switch (a)
{
case a <= b: //<--error
//Do something
break;
default:
break;
}
I know this can be done with if else ...
0
votes
7answers
347 views
How do I transform an IF statement with 2 variables onto a switch function using C?
I have an IF-statement that I want to transform into a Switch-statement... But it has 2 variables! Is it possible to do it on C?
It is a rock, paper, scissors game:
(R for rock, P for Paper, S for ...
-2
votes
4answers
148 views
Is there any reason to use switch statement instead of strings of if and elseif? [duplicate]
Possible Duplicate:
Advantage of switch over if-else statement
Why the switch statement and not if-else?
The switch statement seems to be totally useless. Anything it can do can be done ...
-1
votes
2answers
130 views
Is it possible to get 'and' operation using switch statment [closed]
As I have learned so far I am able to use switch statement and use it as an 'or' operator. For example:
switch(num)
case 1:
case 2:
printf("One or Two");
It works like
if(num==1 || num==2)
...
4
votes
2answers
142 views
Equivalent compact “Switch Case” statement
I have a switch case statement with thousands or more unique cases. It's difficult for an user to remember each case by the case number. So, I am using a unique string for each case and hashing it ...
0
votes
5answers
96 views
About switch case in C, why it does not print out? [duplicate]
Possible Duplicate:
Code before the first ‘case’ in a switch-statement
I have the following set of code in C:
void isFindValue(int value1, int value2)
{
switch (value1)
{
case ...
3
votes
3answers
302 views
How Switch case Statement Implemented or works internally?
I read somewhere that the switch statement uses "Binary Search" or some sorting techniques to exactly choose the correct case and this increases its performance compared to else-if ladder.
And also ...
2
votes
6answers
197 views
Default in Switch case
The below is the code which I need to optimize and planned that it would be good to move to switch. But I can compare in case. So I planned to make the comaparision ( len > 3 ) as default case.
If I ...
9
votes
6answers
141 views
Why case: always requires constant expression while if() doesn't?
May be possible duplicate but couldn't have found the same.
Suppose I have following C code :
int a;
printf("Enter number :");
scanf("%d",&a); // suppose entered only an integer
...
-1
votes
4answers
97 views
Doing a while into a switch [closed]
i wanna to do a multiplication table,
where the user choose the number and after show up the table.
but in my code, the while dosen't work inside the switch, why?
ex:
#include<stdio.h>
int ...
6
votes
3answers
571 views
Interview : function pointers vs switch case
During my Interview, I was asked to implement a state machine for a system having 100 states where each state in turn has 100 events, I answered 3 following approaches:
if-else
switch-case
...
0
votes
1answer
132 views
Switch Case Default case C quiestion
Hello I have a small binary tree program in c that I'm working on and after an operation is performed the main menu is printed twice before allowing the next input to be scanned. Any ideas to prevent ...
0
votes
4answers
275 views
getchar not working in switch case (c)
Using a very simple calculator program that prompts a user for an operation to perform, followed by a prompt for two integers on which to perform this operation. The program is supposed to loop after ...
1
vote
1answer
102 views
printing output with 2 switch statement
#include <stdio.h>
#include <math.h>
void getInput( int *metricUnit, int *englishUnit, int *metricNum, int *englishNum, int *valueConvert, int convert);
int getMetricUnit(int *metricNum);
...
1
vote
2answers
89 views
b = false vs if (b) b = false
I am processing test.c file and trying to count single line comments in it.
When I spot two consecutive / characters, I set slc trigger to true.
And when I reach the end of line, I need to set slc ...
0
votes
4answers
97 views
How to use a variable in the case field of switch statement?
Even though the switch syntax is not accepting variables for case labels are there any workarounds to perform similar operation instead of the plain old if-else comparison ?
3
votes
4answers
1k views
C: switch case with logical operator
While I am new to c and want help in this program
my code is :
#include<stdio.h>
#include<conio.h>
void main()
{
int suite=2;
switch(suite)
{
case ...
0
votes
1answer
146 views
Expected expression before { in case…switch
So I have the following:
//at file scope
GLfloat point_colour[3] = {1.0, 0.5, 0.0};
...
void menu_colour(int index){
switch(index){
case RED: point_colour = {1.0, 0.0, 0.0}; break;
case ...
1
vote
4answers
2k views
Case label does not reduce to an integer constant in C?
I am working on a game and I ran my code and got the error "case label does not reduce to an integer constant." I think I know what this means, but how do I fix it? Here is my code:
...
15
votes
4answers
8k views
Using continue in a switch statement
I want to jump from the middle of a switch statement, to the loop statement in the following code:
while (something = get_something())
{
switch (something)
{
case A:
case B:
...
193
votes
21answers
41k views
Why can't variables be declared in a switch statement?
I've always wondered this - why can't you declare variables after a case label in a switch statement? In C++ you can declare variables pretty much anywhere (and declaring them close to first use is ...



