#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 / mukul
ans : 11 6 0
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Can you please explain the difference between strcpy() and memcpy() function?
Difference between pass by reference and pass by value?
What are the different types of C instructions?
How can I implement sets or arrays of bits?
How does #define work?
Can a pointer be static?
What is the function of this pointer?
#include
what is the diffrenet bettwen HTTP and internet protocol
What is wrong in this statement? scanf(ā%dā,whatnumber);
What is a file descriptor in c?
Explain what is wrong with this program statement?
What is the right type to use for boolean values in c? Is there a standard type?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Does c have class?