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 is the best organizational structure?
How is = symbol different from == symbol in c programming?
What is #include stdio h and #include conio h?
will u please send me the placement papers to my mail???????????????????
How arrays can be passed to a user defined function
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
find out largest elemant of diagonalmatrix
What does double pointer mean in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Is main is a keyword in c?
When should a type cast not be used?
How do you define structure?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
What do you mean by dynamic memory allocation in c?
What are multidimensional arrays?