#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
What does typedef struct mean?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
How can I insert or delete a line (or record) in the middle of a file?
What is the difference between malloc() and calloc()?
how to find anagram without using string functions using only loops in c programming
write a program to create a sparse matrix using dynamic memory allocation.
What is the purpose of type declarations?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
How pointers are declared?
What is a scope resolution operator in c?
Write the control statements in C language
How to delete a node from linked list w/o using collectons?
Can an array be an Ivalue?
Write a program to check prime number in c programming?
What is a file descriptor in c?