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


Please Help Members By Posting Answers For Below Questions

How do I create a directory? How do I remove a directory (and its contents)?

606


What is infinite loop?

630


What math functions are available for integers? For floating point?

623


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

1854


What is the meaning of c in c language?

596






Are negative numbers true in c?

600


Why do we use header files in c?

580


What is the general form of a C program?

596


how do you programme Carrier Sense Multiple Access

1516


What do you know about the use of bit field?

612


Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record

4742


Explain what are multidimensional arrays?

603


List the variables are used for writing doubly linked list program.

1621


Can an array be an Ivalue?

666


What is pass by reference in functions?

323