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
How do c compilers work?
Explain how do you list files in a directory?
code for replace tabs with equivalent number of blanks
How to write a multi-statement macro?
What are c preprocessors?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is new line escape sequence?
What is the difference between the = symbol and == symbol?
Explain what are run-time errors?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
how to count no of words,characters,lines in a paragraph.
What is logical error?