#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
Is struct oop?
Explain how do you determine the length of a string value that was stored in a variable?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
How do you override a defined macro?
i have a written test for microland please give me test pattern
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
What is keyword in c?
Why static variable is used in c?
What functions are used in dynamic memory allocation in c?
can anyone suggest some site name..where i can get some good data structure puzzles???
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
How do you generate random numbers in C?
Write a program to identify if a given binary tree is balanced or not.
Why pointers are used in c?
What standard functions are available to manipulate strings?