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
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What are the similarities between c and c++?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
How many bytes is a struct in c?
Differentiate between the = symbol and == symbol?
Explain what is the use of a semicolon (;) at the end of every program statement?
Is it cc or c in a letter?
Explain output of printf("Hello World"-'A'+'B'); ?
Explain a pre-processor and its advantages.
What is a list in c?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
number of times a digit is present in a number
Can main () be called recursively?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above