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


Please Help Members By Posting Answers For Below Questions

Explain high-order and low-order bytes.

657


What is gets() function?

656


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

637


Why isn't any of this standardized in c? Any real program has to do some of these things.

615


How can I get the current date or time of day in a c program?

643






Explain how do you convert strings to numbers in c?

585


How can my program discover the complete pathname to the executable from which it was invoked?

650


What are disadvantages of C language.

636


What is equivalent to ++i+++j?

633


What is 1f in c?

1820


How can I recover the file name given an open stream?

544


C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions

599


while initialization of array why we use a[][2] why not a[2][]...?

1855


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

652


Explain the properties of union. What is the size of a union variable

709