Switch (i)
i=1;
case 1
i++;
case 2
++i;
break;
case 3
--i;
Output of i after executing the program
Answer Posted / rukmanee
output: i=1
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Do pointers store the address of value or the actual value of a variable?
What is string constants?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What are the different types of errors?
Is c high or low level?
What is the difference between printf and scanf in c?
List a few unconditional control statement in c.
Where define directive used?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
How are variables declared in c?
What is typeof in c?
What is the process to generate random numbers in c programming language?
What is malloc return c?
What is clrscr ()?