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
How reliable are floating-point comparisons?
What is methods in c?
Explain how to reverse singly link list.
What is the Purpose of 'extern' keyword in a function declaration?
What is the scope of static variables in c language?
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
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
What is difference between && and & in c?
What are the preprocessor categories?
Is c easy to learn?
what is the difference between 123 and 0123 in c?
Do you know pointer in c?
Explain what are compound statements?
Can you subtract pointers from each other? Why would you?
Explain 'far' and 'near' pointers in c.