f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / xx
no output
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a protocol in c?
Are the variables argc and argv are always local to main?
What is ## preprocessor operator in c?
What is a pointer value and address in c?
What is the meaning of && in c?
What is the difference between array and structure in c?
hello freinds next week my interview in reliance,nybody has an idea about it intervew questions..so tell
Explain what is operator promotion?
what is ur strangth & weekness
Why does everyone say not to use gets?
Explain the difference between null pointer and void pointer.
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
I need a sort of an approximate strcmp routine?
Explain the ternary tree?