#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 / guest
x=11
k=11
j=6
| Is This Answer Correct ? | 4 Yes | 20 No |
Post New Answer View All Answers
Explain that why C is procedural?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How can I trap or ignore keyboard interrupts like control-c?
Explain how do you view the path?
What are the different types of data structures in c?
What does the function toupper() do?
What are qualifiers?
What are qualifiers and modifiers c?
What is c system32 taskhostw exe?
How can I swap two values without using a temporary?
What are runtime error?
What is dynamic dispatch in c++?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Differentiate between null and void pointers.
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?