f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / xx
no output
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is C language ?
What is the difference between malloc calloc and realloc in c?
Which is an example of a structural homology?
Why dont c comments nest?
Explain what is wrong in this statement?
why do some people write if(0 == x) instead of if(x == 0)?
Why functions are used in c?
Explain 'bus error'?
What is the use of header files?
What are the disadvantages of c language?
What are nested functions in c?
Explain setjmp()?
Does sprintf put null character?
What is the use of static variable in c?
praagnovation