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

Answer Posted / viji

a++ is postfix operator so it first assigns its values and
then incremented. In above statement the value of a is first
assigned to c and then increment. so the output of c is 2;

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is assert and when would I use it?

755


What is the use of function overloading in C?

872


What is the right way to use errno?

810


What are the complete rules for header file searching?

845


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

5188


What is the difference between abs() and fabs() functions?

831


When should the volatile modifier be used?

874


How do c compilers work?

785


For what purpose null pointer used?

798


Differentiate between declaring a variable and defining a variable?

806


What is the basic structure of c?

754


Can a local variable be volatile in c?

755


Why is this loop always executing once?

787


What is the meaning of c in c language?

797


What is pre-emptive data structure and explain it with example?

3455