#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 ? | 22 Yes | 5 No |
Post New Answer View All Answers
how could explain about job profile
What is the size of structure in c?
Explain what does the format %10.2 mean when included in a printf statement?
What is the difference between class and object in c?
Write a program to reverse a linked list in c.
When should the const modifier be used?
How to compare array with pointer in c?
How do you view the path?
Where can I get an ansi-compatible lint?
What are variables c?
What is operator promotion?
How can I read data from data files with particular formats?
What is string function c?
Do you know the difference between exit() and _exit() function in c?
What does stand for?