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


Please Help Members By Posting Answers For Below Questions

explain what is a newline escape sequence?

688


Can you write the function prototype, definition and mention the other requirements.

659


Can you pass an entire structure to functions?

694


Write a C program in Fibonacci series.

635


Difference between macros and inline functions? Can a function be forced as inline?

709






Define circular linked list.

571


What is static memory allocation?

604


Can the sizeof operator be used to tell the size of an array passed to a function?

620


What is an expression?

654


Here is a good puzzle: how do you write a program which produces its own source code as output?

595


When should structures be passed by values or by references?

583


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

636


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

729


Are enumerations really portable?

594


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

5056