#define MAX(x,y) (x) > (y) ? (x) : (y)
main()
{
int i = 10, j = 5, k = 0;
k = MAX(i++, ++j);
printf("%d %d %d", i,j,k);
}
what will the values of i , j and k?
}
Answer Posted / sumi
11 , 6, 10
| Is This Answer Correct ? | 54 Yes | 32 No |
Post New Answer View All Answers
What’s a signal? Explain what do I use signals for?
List the difference between a While & Do While loops?
Is Exception handling possible 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
What is wild pointer in c?
How many types of errors are there in c language? Explain
Is there any demerits of using pointer?
Explain the difference between ++u and u++?
What is bubble sort in c?
What are the two types of functions in c?
Explain main function in c?
Why can’t we compare structures?
How many levels of indirection in pointers can you have in a single declaration?
What is a memory leak? How to avoid it?
How can I rethow can I return a sequence of random numbers which dont repeat at all?