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
Write a program for finding factorial of a number.
What is string function in c?
Is r written in c?
What is return in c programming?
What are variables c?
Does c have an equivalent to pascals with statement?
What is huge pointer in c?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What is omp_num_threads?
#include
What is a dynamic array in c?
Is array a primitive data type in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
how should functions be apportioned among source files?
What does void main () mean?