f1()
{
f(3);}
f(int t)
{
switch(t);
{
case 2: c=3;
case 3: c=4;
case 4: c=5;
case 5: c=6;
default: c=0;}
value of c?
Answer Posted / vignesh1988i
c=6.... since no break statement
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What math functions are available for integers? For floating point?
When should a type cast not be used?
What is a lookup table in c?
What is the most efficient way to count the number of bits which are set in an integer?
What is #define in c?
Why is python slower than c?
What is struct node in c?
how logic is used
What does void main () mean?
What is the need of structure in c?
What are inbuilt functions in c?
What is fflush() function?
What is a wrapper function in c?
Why do we use header files in c?
what do you mean by enumeration constant?