f()
{
int a=2;
f1(a++);
}
f1(int c)
{
printf("%d", c);
}
c=?
Answer Posted / raj
f1 should have a prototype
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the types of data structures in c?
Why is it important to memset a variable, immediately after allocating memory to it ?
Explain spaghetti programming?
Why do we use static in c?
Give basis knowledge of web designing ...
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
How can I find the modification date of a file?
Explain the difference between strcpy() and memcpy() function?
Differentiate fundamental data types and derived data types in C.
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is an lvalue in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
what is recursion in C
What is scope rule in c?
What is memcpy() function?