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
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Difference between constant pointer and pointer to a constant.
Explain the term printf() and scanf() used in c language?
Why is c called c not d or e?
How can I recover the file name given an open stream or file descriptor?
What is the purpose of 'register' keyword?
Explain what is the benefit of using an enum rather than a #define constant?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What are two dimensional arrays alternatively called as?
What is the use of void pointer and null pointer in c language?
What is the difference between int main and void main in c?
Do you know null pointer?
Why calloc is better than malloc?
What is restrict keyword in c?
What is a char in c?