#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 / vignesh1988i
i=12
j=6
k=11
| Is This Answer Correct ? | 20 Yes | 10 No |
Post New Answer View All Answers
How do you use a pointer to a function?
What are nested functions in c?
What will be your course of action for a push operation?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Why do we use main function?
Is it fine to write void main () or main () in c?
What does s c mean in text?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What is the difference between malloc calloc and realloc in c?
what is different between auto and local static? why should we use local static?
largest Of three Number using without if condition?
What is d scanf?
What is equivalent to ++i+++j?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Differentiate between static and dynamic modeling.