#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 / manoj
10,6,11
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
What are valid operations on pointers?
can we change the default calling convention in c if yes than how.........?
What is %s and %d in c?
What is void c?
What are the different types of linkage exist in c?
Explain the properties of union.
I have seen function declarations that look like this
given post order,in order construct the corresponding binary tree
What does the && operator do in a program code?
Why use int main instead of void main?
What language is windows 1.0 written?
How can I direct output to the printer?
What is a floating point in c?
What extern c means?
What is #define in c?