#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 / amitesh
i=11 j=6 k=10
| Is This Answer Correct ? | 9 Yes | 9 No |
Post New Answer View All Answers
Why is sprintf unsafe?
what is recursion in C
I need previous papers of CSC.......plz help out by posting them.......
What is the use of clrscr?
What are type modifiers in c?
Explain that why C is procedural?
What is %d called in c?
Write a program to check armstrong number in c?
How to set file pointer to beginning c?
What are the 5 elements of structure?
Differentiate Source Codes from Object Codes
What kind of structure is a house?
Is exit(status) truly equivalent to returning the same status from main?
what is the structure pointer?
Is main a keyword in c?