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
What is assert and when would I use it?
What is the use of function overloading in C?
What is the right way to use errno?
What are the complete rules for header file searching?
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.
What is the difference between abs() and fabs() functions?
When should the volatile modifier be used?
How do c compilers work?
For what purpose null pointer used?
Differentiate between declaring a variable and defining a variable?
What is the basic structure of c?
Can a local variable be volatile in c?
Why is this loop always executing once?
What is the meaning of c in c language?
What is pre-emptive data structure and explain it with example?