#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 / sunil v r
11,6,11
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Dont ansi function prototypes render lint obsolete?
How can I manipulate individual bits?
why we wont use '&' sing in aceesing the string using scanf
What is the difference between exit() and _exit() function?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
how to create duplicate link list using C???
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is the difference between new and malloc functions?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
State the difference between x3 and x[3].
Simplify the program segment if X = B then C ← true else C ← false
pierrot's divisor program using c or c++ code
What is string length in c?
Explain what is #line used for?
How do you search data in a data file using random access method?