f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / jasna.c
no output
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What tq means in chat?
What is assert and when would I use it?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
C language questions for civil engineering
What is the difference between the = symbol and == symbol?
Explain how do you override a defined macro?
What is pointer in c?
What is switch in c?
Write a code to remove duplicates in a string.
What is equivalent to ++i+++j?
What do header files do?
Why doesn't C support function overloading?
What does nil mean in c?
What is adt in c programming?
what is different between auto and local static? why should we use local static?