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

How reliable are floating-point comparisons?

815


What is methods in c?

814


Explain how to reverse singly link list.

799


What is the Purpose of 'extern' keyword in a function declaration?

842


What is the scope of static variables in c language?

822


Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

1636


Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix

1739


What is difference between && and & in c?

844


What are the preprocessor categories?

805


Is c easy to learn?

726


what is the difference between 123 and 0123 in c?

932


Do you know pointer in c?

790


Explain what are compound statements?

793


Can you subtract pointers from each other? Why would you?

735


Explain 'far' and 'near' pointers in c.

884