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
When is a null pointer used?
What does char * * argv mean in c?
Why is python slower than c?
Write a program that accept anumber in words
What is declaration and definition in c?
swap 2 numbers without using third variable?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
If you know then define #pragma?
Are pointers integers in c?
What are the complete rules for header file searching?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
How important is structure in life?
What are the c keywords?
How is a structure member accessed?