f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / banavathvishnu
a value will be first assigned to C in the Function and
latter it will be incremented in f() function.
so the value C remains 2
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What do you mean by command line argument?
What is #ifdef ? What is its application?
Describe the difference between = and == symbols in c programming?
What are different storage class specifiers in c?
How do you sort filenames in a directory?
What is a rvalue?
Are there namespaces in c?
In which header file is the null macro defined?
When should the register modifier be used? Does it really help?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is the importance of c in your views?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
How can you find the day of the week given the date?
What is a nested formula?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)