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 / shruti
Yeah value of c becomes 0 at the end of the program..
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What does %p mean?
How do you determine the length of a string value that was stored in a variable?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is linear search?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Explain what is the use of a semicolon (;) at the end of every program statement?
Explain what happens if you free a pointer twice?
Why #include is used in c language?
What is the difference between fread and fwrite function?
Are there constructors in c?
What is function prototype in c language?
What is the stack in c?
What are different types of pointers?
Why is #define used?
What does printf does?