in multiple branching construct "default" case is

a) optional

b) compulsarily

c) it is not include in this construct

d) none of the above


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is enumerated data type in c?

0 Answers  


What is abstract data structure in c?

0 Answers  


is assignment operator is arithmatic or not

3 Answers   Infosys,


What does. int *x[](); means ?

0 Answers   Wilco,


consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value

4 Answers   TCS,






what is difference between C and C++

4 Answers  


c program to compute Income tax and Net Salary for its employees. The company offers tax relief of Kshs. 650 for single employees and Kshs. 1,100 for married employees. The relief will be deducted from the Gross salary, to give the taxable income. This will be computed at the following rates: [10mks] Taxable Income Rate (%) <5000 0 5000-19999 6 20000-36999 9 37000 and above 16

1 Answers  


C program to find all possible outcomes of a dice?

0 Answers  


Why c++ is called c++ and not c+?

9 Answers   EBS,


What is the difference b/w Structure & Class?

3 Answers  


Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;

2 Answers   Lucent,


what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason

3 Answers  


Categories