f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?

Answer Posted / vignesh1988i

c=2

Is This Answer Correct ?    16 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do shell structures work?

563


Which is better malloc or calloc?

645


What does return 1 means in c?

579


Explain what happens if you free a pointer twice?

603


What is wild pointer in c?

601






Why do we use namespace feature?

573


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

654


Did c have any year 2000 problems?

647


What does do in c?

601


What are the advantage of c language?

544


Explain is it valid to address one element beyond the end of an array?

727


What the different types of arrays in c?

610


What is a 'null pointer assignment' error?

718


What is bss in c?

594


Why we not create function inside function.

1742