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
Which of these functions is safer to use : fgets(), gets()? Why?
What does it mean when the linker says that _end is undefined?
What is the difference between printf and scanf )?
What are void pointers in c?
Explain can you assign a different address to an array tag?
Explain how can I manipulate strings of multibyte characters?
please explain every phase in the "SDLC" in the dotnet.
How can you return multiple values from a function?
Explain enumerated types in c language?
Why void is used in c?
How do I round numbers?
What is pointer and structure in c?
What is time null in c?
program for reversing a selected line word by word when multiple lines are given without using strrev
How to create struct variables?